Updated scheduled tasks

This commit is contained in:
2026-07-02 23:11:46 +10:00
parent 4c98b33fb4
commit 00bd30fc5e
17 changed files with 397 additions and 667 deletions
+8 -1
View File
@@ -10,10 +10,17 @@ defineProps<{
status?: string;
}>();
const isStandalone = (): boolean => {
if (typeof window === 'undefined') return false;
return window.matchMedia('(display-mode: standalone)').matches
|| (window.navigator as any).standalone === true;
};
const form = useForm({
email: '',
password: '',
remember: false,
remember: isStandalone(),
});
const submit = () => {