Skip to content

Commit

Permalink
fix: fix initial emit for GraphQL adapters (#315)
Browse files Browse the repository at this point in the history
  • Loading branch information
mburr-salesforce authored May 16, 2023
1 parent 09eef92 commit eba97df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lightning-stubs/uiGraphQLApi/uiGraphQLApi.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export class graphql extends createTestWireAdapter() {
constructor(dataCallback) {
super(dataCallback);

graphql.emit({ data: undefined, errors: undefined });
graphql.emit(undefined);
}
}

Expand Down

0 comments on commit eba97df

Please sign in to comment.