Merged PR 2351: fix csp by making it server side

Related work items: #23447
This commit is contained in:
Robert Bond
2026-05-28 10:41:11 +00:00
parent 24cd7000f7
commit 3f2b8807e7
5 changed files with 34 additions and 35 deletions
+7 -1
View File
@@ -2,6 +2,7 @@ import { LPADataActionTypes } from "./action";
const LPADataInitialState = {
LPAData: {},
caseStatusObj: {}
};
export default function reducer(state = LPADataInitialState, action) {
@@ -9,7 +10,12 @@ export default function reducer(state = LPADataInitialState, action) {
case LPADataActionTypes.SETLPADATA:
return {
...state,
LPAData: action.LPAData,
LPAData: action.LPAData
};
case LPADataActionTypes.SETCASESTATUS:
return {
...state,
caseStatusObj: action.caseStatusObj
};
default:
return state;