frontend: temporarily disable recording preferences steps in room creation wizard

This commit is contained in:
juancarmore 2025-07-24 21:41:31 +02:00
parent aa2c07f384
commit 04be9c583b

View File

@ -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) => {