From 8ea588617db7bc0a485f7f9c27864804995008c9 Mon Sep 17 00:00:00 2001 From: zimplexing Date: Sat, 26 Jul 2025 14:50:53 +0800 Subject: [PATCH] fix: update placeholder and error message --- components/settings/APIConfigSection.tsx | 2 +- stores/homeStore.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/components/settings/APIConfigSection.tsx b/components/settings/APIConfigSection.tsx index 306fd33..70bdb2b 100644 --- a/components/settings/APIConfigSection.tsx +++ b/components/settings/APIConfigSection.tsx @@ -76,7 +76,7 @@ export const APIConfigSection = forwardRef((set, get) => ({ } } catch (err: any) { if (err.message === "API_URL_NOT_SET") { - set({ error: "请点击右上角设置按钮,配置您的 API 地址" }); + set({ error: "请点击右上角设置按钮,配置您的服务器地址" }); } else { set({ error: "加载失败,请重试" }); }