Skip to content

Commit

Permalink
Merge pull request #1056 from PintoGideon/Wizard-Bug-Fix
Browse files Browse the repository at this point in the history
Wizard-Bug-Fix
  • Loading branch information
PintoGideon authored Feb 9, 2024
2 parents 6900396 + 57078cd commit a64a373
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/components/CreateFeed/reducer/feedReducer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export const createFeedReducer = (
...state,
selectedConfig: [...action.payload.selectedConfig],
};
case Types.AddChrisFile:
case Types.AddChrisFile: {
const file = action.payload.file;
const checkedKeysDict: {
[key: string]: Key[];
Expand All @@ -105,6 +105,7 @@ export const createFeedReducer = (
checkedKeys: checkedKeysDict,
},
};
}
case Types.RemoveChrisFile: {
let checkedKeysDict: {
[key: string]: Key[];
Expand Down Expand Up @@ -172,7 +173,7 @@ export const createFeedReducer = (
uploadProgress: 0,
feedError: "",
creatingFeedStatus: "",
wizardOpen: !state.wizardOpen,
wizardOpen: false,
selectedConfig: [],
};
}
Expand Down

0 comments on commit a64a373

Please sign in to comment.