Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
bunsenstraat committed Oct 27, 2024
1 parent 494ab9d commit 9a3b35b
Showing 1 changed file with 20 additions and 20 deletions.
40 changes: 20 additions & 20 deletions libs/remix-ui/app/src/lib/remix-app/reducer/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,29 +3,29 @@ import { AppState } from "../interface";

export const appReducer = (state: AppState, action: AppAction): AppState => {
switch (action.type) {
case appActionTypes.setGitHubUser: {
return {
...state,
gitHubUser: action.payload
}
case appActionTypes.setGitHubUser: {
return {
...state,
gitHubUser: action.payload
}
case appActionTypes.setCurrentBranch: {
return {
...state,
currentBranch: action.payload
}
}
case appActionTypes.setCurrentBranch: {
return {
...state,
currentBranch: action.payload
}
case appActionTypes.setNeedsGitInit: {
return {
...state,
needsGitInit: action.payload
}
}
case appActionTypes.setNeedsGitInit: {
return {
...state,
needsGitInit: action.payload
}
case appActionTypes.setCanUseGit: {
return {
...state,
canUseGit: action.payload
}
}
case appActionTypes.setCanUseGit: {
return {
...state,
canUseGit: action.payload
}
}
}
}

0 comments on commit 9a3b35b

Please sign in to comment.