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 ffbc411 commit 7e9ff4bCopy full SHA for 7e9ff4b
packages/cli/src/commands/init.ts
@@ -783,8 +783,8 @@ async function processInitForm(
783
initial: true,
784
skip: () => !!initIndexEvents || isSubstreams || isComposedSubgraph,
785
result: value => {
786
- indexEvents = value === 'true';
787
- initDebugger.extend('processInitForm')('indexEvents: %O', value);
+ indexEvents = String(value) === 'true';
+ initDebugger.extend('processInitForm')('indexEvents: %O', indexEvents);
788
return value;
789
},
790
});
0 commit comments