move settings page to modal instead of route

This commit is contained in:
jeffvli
2025-11-23 00:49:39 -08:00
parent 6d0f80f06a
commit 54a8c8c3a4
6 changed files with 85 additions and 55 deletions
@@ -0,0 +1,9 @@
import { openContextModal } from '@mantine/modals';
export const openSettingsModal = () => {
openContextModal({
fullScreen: true,
innerProps: {},
modalKey: 'settings',
});
};