fix(frontend): キャッシュを削除しないとクライアントが使用できないことがある問題を修正

Fix #16196
This commit is contained in:
syuilo 2025-06-16 19:51:26 +09:00
parent a279bd4d49
commit 062d5170df
2 changed files with 3 additions and 10 deletions

View File

@ -1,14 +1,7 @@
## Unreleased ## Unreleased
### General
-
### Client ### Client
- - Fix: キャッシュを削除しないとクライアントが使用できないことがある問題を修正
### Server
-
## 2025.6.2 ## 2025.6.2

View File

@ -72,7 +72,7 @@ export class I18n<T extends ILocale> {
console.error(`Unexpected locale key: ${String(p)}`); console.error(`Unexpected locale key: ${String(p)}`);
return p; return new Proxy({} as any, new Handler<TTarget[keyof TTarget] & ILocale>());
} }
} }
@ -141,7 +141,7 @@ export class I18n<T extends ILocale> {
console.error(`Unexpected locale key: ${String(p)}`); console.error(`Unexpected locale key: ${String(p)}`);
return p; return new Proxy((() => p) as any, new Handler<TTarget[keyof TTarget] & ILocale>());
} }
} }