Skip to content

Commit

Permalink
chore(version): 0.9.18
Browse files Browse the repository at this point in the history
  • Loading branch information
kangfenmao committed Feb 4, 2025
1 parent abb922a commit 0208095
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "CherryStudio",
"version": "0.9.17",
"version": "0.9.18",
"private": true,
"description": "A powerful AI assistant for producer.",
"main": "./out/main/index.js",
Expand Down
2 changes: 1 addition & 1 deletion src/renderer/src/components/OAuth/OAuthButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const OAuthButton: FC<Props> = ({ provider, ...props }) => {
const onSuccess = (key: string) => {
if (key.trim()) {
props.onSuccess?.(key)
window.message.success(t('auth.get_key_success'))
window.message.success({ content: t('auth.get_key_success'), key: 'auth-success' })
}
}

Expand Down
1 change: 1 addition & 0 deletions src/renderer/src/store/migrate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -896,6 +896,7 @@ const migrateConfig = {
provider.type = 'azure-openai'
}
})
state.settings.translateModelPrompt = TRANSLATE_PROMPT
return state
}
}
Expand Down

0 comments on commit 0208095

Please sign in to comment.