From 04be9c583b340f396218d4d2dc85c6b1268155e9 Mon Sep 17 00:00:00 2001 From: juancarmore Date: Thu, 24 Jul 2025 21:41:31 +0200 Subject: [PATCH] frontend: temporarily disable recording preferences steps in room creation wizard --- .../src/lib/services/wizard-state.service.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 4550878..6d56623 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 @@ -259,7 +259,8 @@ export class RoomWizardStateService { private updateStepsVisibility(): void { const currentSteps = this._steps(); const currentOptions = this._roomOptions(); - const recordingEnabled = currentOptions.preferences?.recordingPreferences.enabled ?? false; + // TODO: Uncomment when recording preferences are implemented + const recordingEnabled = false; // currentOptions.preferences?.recordingPreferences.enabled ?? false; // Update recording steps visibility based on recordingEnabled const updatedSteps = currentSteps.map((step) => {