Skip to content

Commit

Permalink
fix: add missing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
gajus committed Nov 2, 2019
1 parent e1fa785 commit 587c6dd
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/factories/createInterceptors.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,27 +45,27 @@ export default (userConfiguration: UserConfigurationType = defaultConfiguration)
interceptors.push(
createFieldNameTransformationInterceptor({
format: 'CAMEL_CASE',
})
}),
);
}

if (configuration.normaliseQueries) {
interceptors.push(
createQueryNormalisationInterceptor({
stripComments: true,
})
}),
);
}

if (configuration.benchmarkQueries) {
interceptors.push(
createQueryBenchmarkingInterceptor()
createQueryBenchmarkingInterceptor(),
);
}

if (configuration.logQueries) {
interceptors.push(
createQueryLoggingInterceptor()
createQueryLoggingInterceptor(),
);
}

Expand Down

0 comments on commit 587c6dd

Please sign in to comment.