#843 missing back button in settings on mobile (#849)

Co-authored-by: lethemanh <lethemanh@lethemanhs-MacBook-Pro.local>
This commit is contained in:
lethemanh
2026-04-29 22:38:47 +07:00
committed by GitHub
parent d66bc59967
commit c429306e77
2 changed files with 57 additions and 43 deletions
+3 -1
View File
@@ -121,7 +121,9 @@ export default function CalendarLayout(): JSX.Element {
currentView={currentView}
/>
)}
{view === 'settings' && <SettingsPage isInIframe={isInIframe} />}
{view === 'settings' && (
<SettingsPage menubarProps={menubarProps} isInIframe={isInIframe} />
)}
<ErrorSnackbar error={error} type="calendar" />
</div>
)