From 76ca9064717616cea3f8f1a7304508a229299543 Mon Sep 17 00:00:00 2001 From: YetAnotherSuite Dev Date: Mon, 20 Jul 2026 23:15:13 +0200 Subject: [PATCH] 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. --- apps/desktop/src-tauri/tauri.conf.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/desktop/src-tauri/tauri.conf.json b/apps/desktop/src-tauri/tauri.conf.json index fab84ab..1a7c57d 100644 --- a/apps/desktop/src-tauri/tauri.conf.json +++ b/apps/desktop/src-tauri/tauri.conf.json @@ -27,6 +27,6 @@ }, "plugins": { "shell": { "open": true }, - "notification": { "all": true } + "notification": true } }