This commit is contained in:
Andrew Pareles 2025-05-30 01:26:34 -07:00
parent 31950ae01e
commit 22fa093928
2 changed files with 2 additions and 2 deletions

View file

@ -1223,7 +1223,7 @@ export const Settings = () => {
<div className='w-full'>
<h4 className={`text-base`}>{displayInfoOfFeatureName('SCM')}</h4>
<div className='text-sm italic text-void-fg-3 mt-1'>Settings that control the behavior of Source Control features.</div>
<div className='text-sm italic text-void-fg-3 mt-1'>Settings that control the behavior of the Commit Message Generator.</div>
<div className='my-2'>
{/* Sync to Chat Switch */}

View file

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