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`) }