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 }); } } }