mirror of
https://github.com/RooVetGit/Roo-Code.git
synced 2026-08-28 05:27:24 +00:00
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:
parent
499ed3244e
commit
cb3941ff65
1 changed files with 1 additions and 1 deletions
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue