From 0455e03bfd808652e118d7984e1d1de01c9c7b3f Mon Sep 17 00:00:00 2001 From: Patrick Fic Date: Wed, 31 Jan 2024 10:44:52 -0800 Subject: [PATCH] Remove apollo sentry error. --- client/src/graphql/apollo-error-handling.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/client/src/graphql/apollo-error-handling.js b/client/src/graphql/apollo-error-handling.js index 1d3f4e857..aecd55321 100644 --- a/client/src/graphql/apollo-error-handling.js +++ b/client/src/graphql/apollo-error-handling.js @@ -1,6 +1,5 @@ import { onError } from "@apollo/client/link/error"; //https://stackoverflow.com/questions/57163454/refreshing-a-token-with-apollo-client-firebase-auth -import * as Sentry from "@sentry/react"; const errorLink = onError( ({ graphQLErrors, networkError, operation, forward }) => { @@ -9,7 +8,6 @@ const errorLink = onError( console.log( `[GraphQL error]: Message: ${message}, Location: ${locations}, Path: ${path}` ); - Sentry.captureException({ message, locations, path }); }); } if (networkError)