Skip to content

Commit

Permalink
fix: replace double-quotes w backtick str to ensure proper parsing of…
Browse files Browse the repository at this point in the history
… newline char
  • Loading branch information
trevor-anderson committed Jun 28, 2023
1 parent 59df677 commit 72e300b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/apolloLink/link.error.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const errorLink = onError(({ graphQLErrors, networkError }) => {
"[GraphQL Error]",
`Status Code: ${stripAnsi(error.extensions.code as any)}`,
`Message: ${stripAnsi(error.message)}`,
].join("\n\t")
].join(`\n\t`)
);

const { extensions } = error;
Expand Down

0 comments on commit 72e300b

Please sign in to comment.