feat: restore previous session connections and add start-maximized option#332
feat: restore previous session connections and add start-maximized option#332GabrielMalava wants to merge 4 commits into
Conversation
… previous session.
… restoration, and adding a way for the user to open the system in fullscreen.
What
How
i18n
|
| useEffect(() => { | ||
| if (autoConnectAttempted) return; | ||
| if (connections.length === 0) return; | ||
| autoConnectAttempted = true; |
There was a problem hiding this comment.
WARNING: autoConnectAttempted is set before checking the autoConnectLastConnection setting
If the user disables auto-connect (or it starts disabled), the flag is set to true anyway. If they later enable the setting in the same app session, the effect re-runs but is blocked by the already-set flag, so auto-connect never executes.
Move autoConnectAttempted = true; to after the settings.autoConnectLastConnection === false check.
Reply with @kilocode-bot fix it to have Kilo Code address this issue.
Code Review SummaryStatus: No Issues Found | Recommendation: Merge Overview
Files Reviewed (16 files)
Previously reported issue resolved: The Previous Review Summary (commit 3280977)Current summary above is authoritative. Previous snapshots are kept for context only. Previous review (commit 3280977)Status: 1 Issue Found | Recommendation: Address before merge Overview
Issue Details (click to expand)WARNING
Other Observations (not in diff)
Files Reviewed (15 files)
Reviewed by kimi-k2.6-20260420 · Input: 43.6K · Output: 1.7K · Cached: 113.2K |
No description provided.