fix: replace branding keywords to avoid ambiguity

This commit is contained in:
Mingholy
2025-09-16 19:57:33 +08:00
parent 9df193ca42
commit f599cda7d2
8 changed files with 18 additions and 18 deletions

View File

@@ -544,16 +544,16 @@ export function SettingsDialog({
? defaultValue
: false
: typeof defaultValue === 'number' ||
typeof defaultValue === 'string'
typeof defaultValue === 'string'
? defaultValue
: undefined;
const immediateSettingsObject =
toSaveValue !== undefined
? setPendingSettingValueAny(
currentSetting.value,
toSaveValue,
{} as Settings,
)
currentSetting.value,
toSaveValue,
{} as Settings,
)
: ({} as Settings);
saveModifiedSettings(
@@ -780,7 +780,7 @@ export function SettingsDialog({
</Text>
{showRestartPrompt && (
<Text color={Colors.AccentYellow}>
To see changes, Gemini CLI must be restarted. Press r to exit and
To see changes, Qwen Code must be restarted. Press r to exit and
apply changes now.
</Text>
)}