From 6b47923547fd67177ac24cfe03e15969e3ee0e73 Mon Sep 17 00:00:00 2001 From: Amy Evans Date: Wed, 1 Jun 2022 09:22:58 -0400 Subject: [PATCH] Only show Save button once loading completes --- .../workspace/WorkspacePageWithSections.js | 22 ++++++++++--------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/src/pages/workspace/WorkspacePageWithSections.js b/src/pages/workspace/WorkspacePageWithSections.js index 967cfd70d481..6eaf7118fca4 100644 --- a/src/pages/workspace/WorkspacePageWithSections.js +++ b/src/pages/workspace/WorkspacePageWithSections.js @@ -111,17 +111,19 @@ class WorkspacePageWithSections extends React.Component { ) : ( - - - - {this.props.children(hasVBA, policyID, isUsingECard)} - - - + <> + + + + {this.props.children(hasVBA, policyID, isUsingECard)} + + + + {this.props.footer} + )} - {this.props.footer} );