Merge branch 'release/1.6.0' into rome/1.6.0

This commit is contained in:
Patrick Fic
2024-08-15 15:19:34 -07:00
25 changed files with 18188 additions and 10473 deletions

View File

@@ -40,6 +40,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;