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
This commit is contained in:
Hannes Rudolph 2025-08-26 17:07:17 -06:00
parent 499ed3244e
commit cb3941ff65

View file

@ -63,7 +63,7 @@ export const NotificationSettings = ({
<div className="text-vscode-descriptionForeground text-sm mt-1 mb-2">
{t("settings:notifications.system.description")}
</div>
{systemNotificationsEnabled && !isChangeDetected && (
{systemNotificationsEnabled && (
<VSCodeButton
appearance="secondary"
onClick={onTestNotificationClick}