This commit is contained in:
Julian Freeman
2026-03-27 12:15:28 -04:00
parent 2d51467bb9
commit 07faa81d21

View File

@@ -89,9 +89,8 @@ const checkReminders = async (currentMin: number) => {
} }
for (const r of dueReminders) { for (const r of dueReminders) {
showToast(`⏰ 提醒: ${r.content}`);
if (hasPermission) { if (hasPermission) {
sendNotification({ title: '瞬影 提醒', body: r.content }); sendNotification({ title: '', body: r.content });
} }
} }
} }