@@ -169,7 +169,9 @@ export class FirstRunWizard extends Container {
169169 private renderOAuthRunning ( ) : void {
170170 if ( this . manualUrl ) {
171171 this . addChild ( new Text ( ansi . bold ( ansi . yellow ( "Sign in to continue" ) ) , 1 , 0 ) ) ;
172- this . addChild ( new Text ( ansi . dim ( "Opening browser automatically. If it didn't open, copy the URL below:" ) , 1 , 1 ) ) ;
172+ this . addChild (
173+ new Text ( ansi . dim ( "Opening browser automatically. If it didn't open, copy the URL below:" ) , 1 , 1 ) ,
174+ ) ;
173175 // Bare URL on its own line with NO left padding so terminal
174176 // select-copy doesn't pick up indent spaces. The terminal may
175177 // still hard-wrap the URL across rows; cmd/triple-click most
@@ -182,9 +184,7 @@ export class FirstRunWizard extends Container {
182184 // still has the failed URL in its address bar — that URL
183185 // contains the code + state. They paste it here and we finish
184186 // the flow without the local listener.
185- this . addChild (
186- new Text ( ansi . dim ( "Redirect failed? Paste the http://127.0.0.1/callback?... URL here:" ) , 1 , 0 ) ,
187- ) ;
187+ this . addChild ( new Text ( ansi . dim ( "Redirect failed? Paste the http://127.0.0.1/callback?... URL here:" ) , 1 , 0 ) ) ;
188188 this . pasteInput = new Input ( ) ;
189189 this . pasteInput . onSubmit = ( text ) => this . handlePasteSubmit ( text ) ;
190190 this . addChild ( this . pasteInput ) ;
@@ -195,11 +195,7 @@ export class FirstRunWizard extends Container {
195195 } else {
196196 this . addChild ( new Text ( `Opening ${ ansi . cyan ( this . authBase ) } in your browser…` , 1 , 0 ) ) ;
197197 this . addChild (
198- new Text (
199- ansi . dim ( "Complete sign-in in the browser tab. This window will continue automatically." ) ,
200- 1 ,
201- 1 ,
202- ) ,
198+ new Text ( ansi . dim ( "Complete sign-in in the browser tab. This window will continue automatically." ) , 1 , 1 ) ,
203199 ) ;
204200 }
205201 }
@@ -235,7 +231,9 @@ export class FirstRunWizard extends Container {
235231 input . onEscape = ( ) => this . setMode ( "byok-provider" ) ;
236232 this . keyInput = input ;
237233 this . addChild ( input ) ;
238- this . addChild ( new Text ( ansi . dim ( "Stored at ~/.codebase/credentials.json (mode 0600). Enter to save, Esc to go back." ) , 1 , 1 ) ) ;
234+ this . addChild (
235+ new Text ( ansi . dim ( "Stored at ~/.codebase/credentials.json (mode 0600). Enter to save, Esc to go back." ) , 1 , 1 ) ,
236+ ) ;
239237 }
240238
241239 private renderError ( message : string ) : void {
0 commit comments