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 41c1a60 commit 0b105ddCopy full SHA for 0b105dd
src/build/onboarding/ui/app.tsx
@@ -538,14 +538,12 @@ const OnboardingApp: FC<AppProps> = ({ appId, initialProgress }) => {
538
}
539
540
if (step === 'build-complete') {
541
- // Clear build output to prevent Ink cursor tracking issues
542
- // (large height change between requesting-build and build-complete
543
- // causes Ink to lose its render position and draw duplicates)
544
setBuildOutput([])
+ // Exit immediately after rendering the final screen
545
const timer = setTimeout(() => {
546
if (!cancelled)
547
exit()
548
- }, 4000)
+ }, 100)
549
return () => { cancelled = true; clearTimeout(timer) }
550
551
0 commit comments