From fa15657f579423a653484c941162c068675fcf2c Mon Sep 17 00:00:00 2001 From: John Darragh Date: Thu, 9 Jan 2025 12:02:01 -0800 Subject: [PATCH] Fix missing footer on Calculation Summary Page and PDF (#2029) --- .../components/ProjectWizard/TdmCalculationContainer.jsx | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/client/src/components/ProjectWizard/TdmCalculationContainer.jsx b/client/src/components/ProjectWizard/TdmCalculationContainer.jsx index 08a6ca02..d925ab4a 100644 --- a/client/src/components/ProjectWizard/TdmCalculationContainer.jsx +++ b/client/src/components/ProjectWizard/TdmCalculationContainer.jsx @@ -87,17 +87,10 @@ export function TdmCalculationContainer({ contentContainerRef }) { } } else { projectResponse = await projectService.getById(projectId); - - // setLoginId(projectResponse.data.loginId); - // setDateModified(formatDatetime(projectResponse.data.dateModified)); - // setDateSnapshotted( - // formatDatetime(projectResponse.data?.dateSnapshotted) - // ); - // setDateSubmitted(formatDatetime(projectResponse.data?.dateSubmitted)); setShareView(false); } if (projectResponse) { - setProject(projectResponse); + setProject(projectResponse.data); inputs = JSON.parse(projectResponse.data.formInputs); setStrategiesInitialized(true); }