From 22fa0939287f96737362711c0c48496d5baf75dd Mon Sep 17 00:00:00 2001 From: Andrew Pareles Date: Fri, 30 May 2025 01:26:34 -0700 Subject: [PATCH] sync --- .../void/browser/react/src/void-settings-tsx/Settings.tsx | 2 +- src/vs/workbench/contrib/void/common/voidSettingsTypes.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/vs/workbench/contrib/void/browser/react/src/void-settings-tsx/Settings.tsx b/src/vs/workbench/contrib/void/browser/react/src/void-settings-tsx/Settings.tsx index 112a5330..e086a2ec 100644 --- a/src/vs/workbench/contrib/void/browser/react/src/void-settings-tsx/Settings.tsx +++ b/src/vs/workbench/contrib/void/browser/react/src/void-settings-tsx/Settings.tsx @@ -1223,7 +1223,7 @@ export const Settings = () => {

{displayInfoOfFeatureName('SCM')}

-
Settings that control the behavior of Source Control features.
+
Settings that control the behavior of the Commit Message Generator.
{/* Sync to Chat Switch */} diff --git a/src/vs/workbench/contrib/void/common/voidSettingsTypes.ts b/src/vs/workbench/contrib/void/common/voidSettingsTypes.ts index 443e02a6..90ac77eb 100644 --- a/src/vs/workbench/contrib/void/common/voidSettingsTypes.ts +++ b/src/vs/workbench/contrib/void/common/voidSettingsTypes.ts @@ -382,7 +382,7 @@ export const displayInfoOfFeatureName = (featureName: FeatureName) => { return 'Apply' // source control: else if (featureName === 'SCM') - return 'Source Control' + return 'Commit Message Generator' else throw new Error(`Feature Name ${featureName} not allowed`) }