removed/commented out expo-firebase-analytics

This commit is contained in:
jfrye122
2023-03-29 16:33:00 -04:00
parent 5bd06dac79
commit 7f2cddc6ae
3 changed files with 53 additions and 126 deletions

View File

@@ -1,4 +1,4 @@
import * as Analytics from "expo-firebase-analytics";
//import * as Analytics from "expo-firebase-analytics";//JF:commenting out the firebase analytics portion
import { signInWithEmailAndPassword, signOut } from "firebase/auth";
import { all, call, put, takeLatest } from "redux-saga/effects";
import * as Sentry from "sentry-expo";
@@ -107,7 +107,7 @@ export function* onSignInSuccess() {
export function* signInSuccessSaga({ payload }) {
try {
Analytics.setUserId(payload.email);
// Analytics.setUserId(payload.email);//JF:commenting out the firebase analytics portion
Sentry.Native.setUser({ email: payload.email });
const shop = yield client.query({ query: QUERY_BODYSHOP });