Compare commits

...

2 Commits

Author SHA1 Message Date
ff9f9b574b 🐛 Fix notify 2024-03-31 18:11:45 +08:00
86b7fd85af 🐛 Optimize icon 2024-03-31 18:10:52 +08:00
2 changed files with 1 additions and 1 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 78 KiB

View File

@ -58,7 +58,7 @@ export const useNotifications = defineStore("notifications", () => {
total.value++ total.value++
if (Capacitor.getPlatform() === "web") { if (Capacitor.getPlatform() === "web") {
new Notification(data["id"], { new Notification(data["subject"], {
body: data["subject"] body: data["subject"]
}) })
} else { } else {