fix: notification plugin config format for Tauri v2

In Tauri v2, the notification plugin expects a boolean or unit value,
not an object with 'all' key.
This commit is contained in:
YetAnotherSuite Dev 2026-07-20 23:15:13 +02:00
parent 43ad965300
commit 76ca906471

View File

@ -27,6 +27,6 @@
}, },
"plugins": { "plugins": {
"shell": { "open": true }, "shell": { "open": true },
"notification": { "all": true } "notification": true
} }
} }