Merge pull request #18438 from acwoo97/fix/load-defaults

fix: load default settings when sessionStorage is empty
This commit is contained in:
Tim Baek 2025-10-19 22:26:21 -05:00 committed by GitHub
commit 375d29bab4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -192,6 +192,8 @@
codeInterpreterEnabled = input.codeInterpreterEnabled; codeInterpreterEnabled = input.codeInterpreterEnabled;
} }
} catch (e) {} } catch (e) {}
} else {
await setDefaults();
} }
const chatInput = document.getElementById('chat-input'); const chatInput = document.getElementById('chat-input');