Disable inbox nesting on mobile

This commit is contained in:
dotta 2026-04-08 18:32:42 -05:00
parent 9e8cd28f81
commit 996c7eb727
3 changed files with 24 additions and 2 deletions

View file

@ -169,6 +169,10 @@ export function saveInboxNesting(enabled: boolean) {
}
}
export function resolveInboxNestingEnabled(preferenceEnabled: boolean, isMobile: boolean): boolean {
return preferenceEnabled && !isMobile;
}
export function loadLastInboxTab(): InboxTab {
try {
const raw = localStorage.getItem(INBOX_LAST_TAB_KEY);