diff --git a/frontend/projects/shared-meet-components/src/lib/services/wizard-state.service.ts b/frontend/projects/shared-meet-components/src/lib/services/wizard-state.service.ts index 7161915..aca1a9b 100644 --- a/frontend/projects/shared-meet-components/src/lib/services/wizard-state.service.ts +++ b/frontend/projects/shared-meet-components/src/lib/services/wizard-state.service.ts @@ -360,8 +360,8 @@ export class RoomWizardStateService { return { showPrevious: !isFirstStep, showNext: !isLastStep, - showCancel: false, - showBack: true, + showCancel: isEditMode, + showBack: !isEditMode, showFinish: isLastStep, showSkipAndFinish: false, // Skip and finish is not used in this wizard disableFinish: isSomeStepInvalid,