Skip to content

Commit

Permalink
fix: no whitespace at lineends
Browse files Browse the repository at this point in the history
  • Loading branch information
mdornseif committed Feb 25, 2022
1 parent 5caab59 commit 350a5aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/queryToSchema.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@ export async function queryToSchema(
output.push(
` ${field.name}: [${BQ2GQL_FIELDS[field.type]}] \t# ${JSON.stringify(
field
)} `
)}`
);
} else {
output.push(
` ${field.name}: ${BQ2GQL_FIELDS[field.type]} \t# ${JSON.stringify(
field
)} `
)}`
);
}
}
Expand Down

0 comments on commit 350a5aa

Please sign in to comment.