diff --git a/.vscode/settings.json b/.vscode/settings.json index 45d5fcf..0a9763d 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -4,7 +4,7 @@ "prettier.enable": false, "editor.formatOnSave": true, "editor.codeActionsOnSave": { - "source.fixAll.eslint": true + "source.fixAll.eslint": "explicit" }, "[python]": { "editor.formatOnType": true diff --git a/app/components/index.tsx b/app/components/index.tsx index b7efaba..824356b 100644 --- a/app/components/index.tsx +++ b/app/components/index.tsx @@ -47,7 +47,7 @@ const Main: FC = () => { useEffect(() => { if (APP_INFO?.title) - document.title = `${APP_INFO.title} - Powered by Dify` + document.title = `${APP_INFO.title} - Powered by Booway` }, [APP_INFO?.title]) // onData change thought (the produce obj). https://github.com/immerjs/immer/issues/576 diff --git a/config/index.ts b/config/index.ts index eb726f1..cb1a90a 100644 --- a/config/index.ts +++ b/config/index.ts @@ -3,11 +3,11 @@ export const APP_ID = `${process.env.NEXT_PUBLIC_APP_ID}` export const API_KEY = `${process.env.NEXT_PUBLIC_APP_KEY}` export const API_URL = `${process.env.NEXT_PUBLIC_API_URL}` export const APP_INFO: AppInfo = { - title: 'Chat APP', + title: '博微造价工程助手', description: '', - copyright: '', + copyright: '江西博微新技术有限公司', privacy_policy: '', - default_language: 'en', + default_language: 'zh-Hans', } export const isShowPrompt = false