diff --git a/public/icon.png b/public/icon.png index b8f3fc4..cb4cc1f 100644 Binary files a/public/icon.png and b/public/icon.png differ diff --git a/public/maskable-icon.png b/public/maskable-icon.png index c9655cb..ea4a0a9 100644 Binary files a/public/maskable-icon.png and b/public/maskable-icon.png differ diff --git a/src/stores/notifications.ts b/src/stores/notifications.ts index eb3fa20..1b4b963 100644 --- a/src/stores/notifications.ts +++ b/src/stores/notifications.ts @@ -59,12 +59,12 @@ export const useNotifications = defineStore("notifications", () => { if (Capacitor.getPlatform() === "web") { new Notification(data["subject"], { - body: data["subject"] + body: data["content"] }) } else { LocalNotifications.schedule({ notifications: [ - { id: data["id"], title: data["subject"], body: data["subject"] } + { id: data["id"], title: data["subject"], body: data["content"] } ] }).then((res) => console.log(res)) }