Skip to content

Commit b60b7ad

Browse files
committed
Add App fully mounted log
1 parent dd11964 commit b60b7ad

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/App.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -209,6 +209,11 @@ function AppInner() {
209209
// Handle auto-continue after compaction (when user uses /compact -c)
210210
useAutoCompactContinue();
211211

212+
// Mark when UI is fully ready
213+
useEffect(() => {
214+
console.log(`[RENDERER] ✅ App fully mounted and interactive: ${performance.now()}ms`);
215+
}, []);
216+
212217
// Sync selectedWorkspace with URL hash
213218
useEffect(() => {
214219
if (selectedWorkspace) {

0 commit comments

Comments
 (0)