Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 | type GlobalModalKey =
`modal_${'keyboard_shortcuts_help' | 'prepare_for_offline_use' | 'debug_ui_state'}`;
type Opener = () => void;
export const globalModals = $state<Record<GlobalModalKey, { open: Opener | undefined }>>({
modal_keyboard_shortcuts_help: { open: undefined },
modal_prepare_for_offline_use: { open: undefined },
modal_debug_ui_state: { open: undefined },
});
|