Skip to content

Commit

Permalink
fix: linting
Browse files Browse the repository at this point in the history
  • Loading branch information
LukasLohoff committed Nov 5, 2024
1 parent 611f453 commit b428d00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/service/GraphQLService/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export class GraphQLService extends GenericService {
const {data, errors } = await response.json() as GraphQLResponse<T>;

if (errors?.length > 0) {
throw new Error(`GraphQL error: ${JSON.stringify(errors, null, "\t")}`);
throw new Error(`GraphQL error: ${JSON.stringify(errors, null, '\t')}`);
}

return data;
Expand Down

0 comments on commit b428d00

Please sign in to comment.