diff --git a/client/src/app/site/pages/meetings/pages/autopilot/components/autopilot/autopilot.component.ts b/client/src/app/site/pages/meetings/pages/autopilot/components/autopilot/autopilot.component.ts index 894b4296ed..35dc104c5c 100644 --- a/client/src/app/site/pages/meetings/pages/autopilot/components/autopilot/autopilot.component.ts +++ b/client/src/app/site/pages/meetings/pages/autopilot/components/autopilot/autopilot.component.ts @@ -117,7 +117,9 @@ export class AutopilotComponent extends BaseMeetingComponent implements OnInit { this.projector = refProjector; const currentProjections = refProjector.nonStableCurrentProjections; this._currentProjection = - currentProjections.length > 0 && !!currentProjections[0].type ? currentProjections[0] : null; + currentProjections.length > 0 && !!currentProjections[0].meeting_id + ? currentProjections[0] + : null; this.projectedViewModel = this._currentProjection?.content_object || null; } }),