fix: 更新中文提示信息格式以提升可读性

在多个组件中移除模板字符串,直接使用普通字符串格式化中文提示信息,增强了代码的可读性和一致性。
This commit is contained in:
2026-06-30 21:06:39 +08:00
parent d0825c5ec0
commit ece5c6135e
6 changed files with 13 additions and 8 deletions
+1 -1
View File
@@ -43,7 +43,7 @@ export default function RouterContainer() {
</div>
<h3 className="text-sm font-semibold text-foreground"></h3>
<p className="text-xs text-muted-foreground mt-1 max-w-[240px]">
{`该功能在当前运行环境(${entryPointType})下不可用或已被移除。`}
{entryPointType.toUpperCase()}
</p>
</div>
)}