Skip to content

Commit dcf24e8

Browse files
committed
lint
1 parent a0d9d7f commit dcf24e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/cli/src/commands/init.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)