diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/domains/rooms/pages/room-wizard/steps/recording-config/recording-config.component.html b/meet-ce/frontend/projects/shared-meet-components/src/lib/domains/rooms/pages/room-wizard/steps/recording-config/recording-config.component.html index 1a8c8a22..51e6627d 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/domains/rooms/pages/room-wizard/steps/recording-config/recording-config.component.html +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/domains/rooms/pages/room-wizard/steps/recording-config/recording-config.component.html @@ -24,23 +24,6 @@ > } - - - @if (shouldShowAccessSection) { -
-
- security -
-

Recording Access Control

-

Choose who can access and view the recordings

-
-
-
- } diff --git a/meet-ce/frontend/projects/shared-meet-components/src/lib/domains/rooms/pages/room-wizard/steps/recording-config/recording-config.component.ts b/meet-ce/frontend/projects/shared-meet-components/src/lib/domains/rooms/pages/room-wizard/steps/recording-config/recording-config.component.ts index 0c9bc334..c2196cd8 100644 --- a/meet-ce/frontend/projects/shared-meet-components/src/lib/domains/rooms/pages/room-wizard/steps/recording-config/recording-config.component.ts +++ b/meet-ce/frontend/projects/shared-meet-components/src/lib/domains/rooms/pages/room-wizard/steps/recording-config/recording-config.component.ts @@ -150,8 +150,4 @@ export class RecordingConfigComponent implements OnDestroy { get isRecordingEnabled(): boolean { return this.selectedValue === 'enabled'; } - - get shouldShowAccessSection(): boolean { - return this.isRecordingEnabled || this.isAnimatingOut; - } }