diff --git a/packages/react-native-apollo-client/src/helpers.ts b/packages/react-native-apollo-client/src/helpers.ts index 9cd68065e..2154e7cfb 100644 --- a/packages/react-native-apollo-client/src/helpers.ts +++ b/packages/react-native-apollo-client/src/helpers.ts @@ -16,7 +16,7 @@ export const getVariables = (operation: Operation): string | null => { try { return JSON.stringify(operation.variables); } catch (e) { - // TODO: telemetry + // TODO RUM-1206: telemetry return null; } } @@ -48,7 +48,7 @@ export const getOperationType = ( })[0] || null ); } catch (e) { - // TODO: telemetry + // TODO RUM-1206: telemetry return null; } };