v0.9.54 functionality bug fixes

This commit is contained in:
2026-03-17 15:55:34 -04:00
parent 5f8e86c914
commit a480a78ba7
6 changed files with 13 additions and 7 deletions

View File

@@ -641,7 +641,7 @@ function MonthView({ events, selectedDate, onSelect, onSelectDay }) {
}
// ── Main Schedule Page ────────────────────────────────────────────────────────
export default function SchedulePage({ isToolManager, isMobile }) {
export default function SchedulePage({ isToolManager, isMobile, onProfile, onHelp, onAbout }) {
const { user } = useAuth();
const toast = useToast();
@@ -744,7 +744,7 @@ export default function SchedulePage({ isToolManager, isMobile }) {
<MiniCalendar selected={selDate} onChange={d=>{setSelDate(d);setPanel('calendar');}} eventDates={eventDates}/>
</div>
<div style={{ flex:1 }}/>
<UserFooter />
<UserFooter onProfile={onProfile} onHelp={onHelp} onAbout={onAbout} />
</div>
)}