Skip to content

Commit 4811f43

Browse files
committed
no trailing comma
1 parent c22ba1a commit 4811f43

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/_core/MiniGraphiQL.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ module.exports = class MiniGraphiQL extends React.Component {
8383
this.state.query,
8484
this.props.rootValue,
8585
null, // context
86-
this.state.variables && JSON.parse(this.state.variables),
86+
this.state.variables && JSON.parse(this.state.variables)
8787
).then(result => {
8888
if (result.errors) {
8989
result.errors = result.errors.map(formatError);

0 commit comments

Comments
 (0)