From cb3941ff65e6e5da96e7ecf9d5ed8ef6cf90504b Mon Sep 17 00:00:00 2001 From: Hannes Rudolph Date: Tue, 26 Aug 2025 17:07:17 -0600 Subject: [PATCH] fix: show test notification button when system notifications are enabled - Removed the isChangeDetected condition that was hiding the test button - Test button now appears whenever system notifications are enabled - Users can test notifications immediately after enabling the feature --- webview-ui/src/components/settings/NotificationSettings.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webview-ui/src/components/settings/NotificationSettings.tsx b/webview-ui/src/components/settings/NotificationSettings.tsx index 3cb1ea5512..f26d168fca 100644 --- a/webview-ui/src/components/settings/NotificationSettings.tsx +++ b/webview-ui/src/components/settings/NotificationSettings.tsx @@ -63,7 +63,7 @@ export const NotificationSettings = ({
{t("settings:notifications.system.description")}
- {systemNotificationsEnabled && !isChangeDetected && ( + {systemNotificationsEnabled && (