File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/cli/src/commands Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -485,7 +485,8 @@ async function processInitForm(
485485 . map ( networkToChoice )
486486 . filter ( ( { value } ) => ( value ?? '' ) . includes ( input . toLowerCase ( ) ) ) ,
487487 ) ,
488- validate : value => ( value === 'N/A' || networks . find ( n => n . id === value ) ) ? true : 'Pick a network' ,
488+ validate : value =>
489+ value === 'N/A' || networks . find ( n => n . id === value ) ? true : 'Pick a network' ,
489490 result : value => {
490491 initDebugger . extend ( 'processInitForm' ) ( 'networkId: %O' , value ) ;
491492 const foundNetwork = networks . find ( n => n . id === value ) ;
@@ -495,8 +496,7 @@ async function processInitForm(
495496
496497 https://github.com/graphprotocol/networks-registry
497498
498- To add a chain to the registry you can create an issue or submit a PR`
499- ) ;
499+ To add a chain to the registry you can create an issue or submit a PR` ) ;
500500 process . exit ( 0 ) ;
501501 }
502502 network = foundNetwork ;
You can’t perform that action at this time.
0 commit comments