From 07faa81d21b1c589a12cfb0a833829a0d7760743 Mon Sep 17 00:00:00 2001 From: Julian Freeman Date: Fri, 27 Mar 2026 12:15:28 -0400 Subject: [PATCH] opt --- src/App.vue | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/App.vue b/src/App.vue index 65e8a17..e0e0509 100644 --- a/src/App.vue +++ b/src/App.vue @@ -89,9 +89,8 @@ const checkReminders = async (currentMin: number) => { } for (const r of dueReminders) { - showToast(`⏰ 提醒: ${r.content}`); if (hasPermission) { - sendNotification({ title: '瞬影 提醒', body: r.content }); + sendNotification({ title: '', body: r.content }); } } }