Skip to content

Commit

Permalink
Lint fix
Browse files Browse the repository at this point in the history
  • Loading branch information
incrypto32 committed Jan 30, 2025
1 parent 6e072b2 commit 2a7cf51
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/cli/src/commands/init.ts
Original file line number Diff line number Diff line change
Expand Up @@ -844,7 +844,7 @@ async function processInitForm(
}
} catch (e) {
if (e instanceof Error) {
print.error(`Failed to validate subgraph network: ${e.message}`);
print.error(`Failed to validate subgraph network: ${e?.message}`);
}
throw e;
}
Expand Down

0 comments on commit 2a7cf51

Please sign in to comment.