From 281ed72ac8adcb3068cf3aaf950bc14ad5463ccd Mon Sep 17 00:00:00 2001 From: ibolton336 Date: Wed, 11 Oct 2023 15:26:55 -0400 Subject: [PATCH] :bug: Don't allow save as draft on first page of wizard --- .../custom-wizard-footer.tsx | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/client/src/app/pages/assessment/components/custom-wizard-footer/custom-wizard-footer.tsx b/client/src/app/pages/assessment/components/custom-wizard-footer/custom-wizard-footer.tsx index 069a7f5c95..9b7c6af836 100644 --- a/client/src/app/pages/assessment/components/custom-wizard-footer/custom-wizard-footer.tsx +++ b/client/src/app/pages/assessment/components/custom-wizard-footer/custom-wizard-footer.tsx @@ -83,14 +83,16 @@ export const CustomWizardFooter: React.FC = ({ - + {!isFirstStep && ( + + )} ); }}