feat: update main chat and system chat UI

This commit is contained in:
2026-05-25 17:26:37 +09:00
parent fb5ec649cd
commit f59522ffc4
120 changed files with 43262 additions and 3325 deletions

View File

@@ -26,13 +26,17 @@ function retryChunkLoadOnce(errorMessage: string) {
return false;
}
if (sessionStorage.getItem(CHUNK_LOAD_RETRY_SESSION_KEY) === '1') {
try {
if (sessionStorage.getItem(CHUNK_LOAD_RETRY_SESSION_KEY) === '1') {
return false;
}
sessionStorage.setItem(CHUNK_LOAD_RETRY_SESSION_KEY, '1');
window.location.reload();
return true;
} catch {
return false;
}
sessionStorage.setItem(CHUNK_LOAD_RETRY_SESSION_KEY, '1');
window.location.reload();
return true;
}
function App() {