Skip to content

Commit

Permalink
fix: match option ref to -edg flag (#858)
Browse files Browse the repository at this point in the history
  • Loading branch information
Aenimus committed Jun 6, 2024
1 parent 1ad0b74 commit 35ee698
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cli/src/commands/subgraph/commands/create.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export default (opts: BaseCommandOptions) => {
? parseGraphQLWebsocketSubprotocol(options.websocketSubprotocol)
: undefined,
readme: readmeFile ? await readFile(readmeFile, 'utf8') : undefined,
isEventDrivenGraph: !!options.isEventDrivenGraph,
isEventDrivenGraph: !!options.eventDrivenGraph,
},
{
headers: getBaseHeaders(),
Expand Down

0 comments on commit 35ee698

Please sign in to comment.