pull/5292/head
bunsenstraat 1 month ago committed by bunsenstraat
parent 66c53572cc
commit 5f6c491740
  1. 40
      libs/remix-ui/app/src/lib/remix-app/reducer/app.ts

@ -3,29 +3,29 @@ import { AppState } from "../interface";
export const appReducer = (state: AppState, action: AppAction): AppState => { export const appReducer = (state: AppState, action: AppAction): AppState => {
switch (action.type) { switch (action.type) {
case appActionTypes.setGitHubUser: { case appActionTypes.setGitHubUser: {
return { return {
...state, ...state,
gitHubUser: action.payload gitHubUser: action.payload
}
} }
case appActionTypes.setCurrentBranch: { }
return { case appActionTypes.setCurrentBranch: {
...state, return {
currentBranch: action.payload ...state,
} currentBranch: action.payload
} }
case appActionTypes.setNeedsGitInit: { }
return { case appActionTypes.setNeedsGitInit: {
...state, return {
needsGitInit: action.payload ...state,
} needsGitInit: action.payload
} }
case appActionTypes.setCanUseGit: { }
return { case appActionTypes.setCanUseGit: {
...state, return {
canUseGit: action.payload ...state,
} canUseGit: action.payload
} }
} }
}
} }
Loading…
Cancel
Save