From 17adbc405a143433754d22df648a93c58233a6a8 Mon Sep 17 00:00:00 2001 From: NaccOll Date: Tue, 12 Aug 2025 23:19:17 +0800 Subject: [PATCH] fix: correct notification translation keys format in NotificationSettings --- webview-ui/src/components/settings/NotificationSettings.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webview-ui/src/components/settings/NotificationSettings.tsx b/webview-ui/src/components/settings/NotificationSettings.tsx index 668775a788..3cb1ea5512 100644 --- a/webview-ui/src/components/settings/NotificationSettings.tsx +++ b/webview-ui/src/components/settings/NotificationSettings.tsx @@ -37,8 +37,8 @@ export const NotificationSettings = ({ vscode.postMessage({ type: "showSystemNotification", notificationOptions: { - title: t("settings.notifications.system.testTitle"), - message: t("settings.notifications.system.testMessage"), + title: t("settings:notifications.system.testTitle"), + message: t("settings:notifications.system.testMessage"), force: true, }, })