fix: missing backstage prop

This commit is contained in:
Carlos Valente
2025-02-26 19:50:02 +01:00
committed by Carlos Valente
parent 570ff59cfc
commit b3a099255f
@@ -14,7 +14,7 @@ export default memo(ScheduleExport);
function ScheduleExport(props: ScheduleExportProps) {
const { selectedId, isBackstage } = props;
return (
<ScheduleProvider selectedEventId={selectedId} isBackstage>
<ScheduleProvider selectedEventId={selectedId} isBackstage={isBackstage}>
<ScheduleNav className='schedule-nav-container' />
<Schedule isProduction={isBackstage} className='schedule-container' />
</ScheduleProvider>