Skip to content

Commit

Permalink
fix: add missing semicolon
Browse files Browse the repository at this point in the history
  • Loading branch information
annarieger committed Jun 28, 2022
1 parent f241206 commit 4b64c03
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 @@ -12,7 +12,7 @@ export interface GraphQLQueryObject {

export interface GraphQLResponse<T> {
data: {
[key: string]: T[]
[key: string]: T[];
};
errors?: any;
};
Expand Down

0 comments on commit 4b64c03

Please sign in to comment.