We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd11964 commit b60b7adCopy full SHA for b60b7ad
src/App.tsx
@@ -209,6 +209,11 @@ function AppInner() {
209
// Handle auto-continue after compaction (when user uses /compact -c)
210
useAutoCompactContinue();
211
212
+ // Mark when UI is fully ready
213
+ useEffect(() => {
214
+ console.log(`[RENDERER] ✅ App fully mounted and interactive: ${performance.now()}ms`);
215
+ }, []);
216
+
217
// Sync selectedWorkspace with URL hash
218
useEffect(() => {
219
if (selectedWorkspace) {
0 commit comments