Skip to content

Commit

Permalink
Fix missing footer on Calculation Summary Page and PDF
Browse files Browse the repository at this point in the history
  • Loading branch information
entrotech committed Jan 9, 2025
1 parent adf9b8b commit 2308124
Showing 1 changed file with 1 addition and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 2308124

Please sign in to comment.