Enable all delete methods.

This commit is contained in:
Patrick Fic
2024-02-29 09:34:26 -08:00
parent e524edb005
commit cd8332e02d
6 changed files with 165 additions and 78 deletions

View File

@@ -39,6 +39,7 @@ const appReducer = (state = INITIAL_STATE, action) => {
documentUploadInProgress: null,
};
case AppActionTypes.TOGGLE_DLETE_AFTER_UPLOAD:
console.log("It was toggled.")
return {
...state,
deleteAfterUpload: !state.deleteAfterUpload,

View File

@@ -1,4 +1,4 @@
import { createSelector } from "reselect";
import { createSelector } from 'reselect';
const selectApp = (state) => state.app;