Merge branch 'release/1.6.0' into rome/1.6.0
This commit is contained in:
@@ -40,6 +40,7 @@ const appReducer = (state = INITIAL_STATE, action) => {
|
||||
documentUploadInProgress: null,
|
||||
};
|
||||
case AppActionTypes.TOGGLE_DLETE_AFTER_UPLOAD:
|
||||
console.log("It was toggled.")
|
||||
return {
|
||||
...state,
|
||||
deleteAfterUpload: !state.deleteAfterUpload,
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
import { createSelector } from "reselect";
|
||||
import { createSelector } from 'reselect';
|
||||
|
||||
const selectApp = (state) => state.app;
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
//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";
|
||||
import * as Sentry from '@sentry/react-native';
|
||||
import { logImEXEvent } from "../../firebase/firebase.analytics";
|
||||
import {
|
||||
auth,
|
||||
@@ -108,7 +108,7 @@ export function* onSignInSuccess() {
|
||||
export function* signInSuccessSaga({ payload }) {
|
||||
try {
|
||||
// Analytics.setUserId(payload.email);//JF:commenting out the firebase analytics portion
|
||||
Sentry.Native.setUser({ email: payload.email });
|
||||
//Sentry.Native.setUser({ email: payload.email });
|
||||
|
||||
const shop = yield client.query({ query: QUERY_BODYSHOP });
|
||||
logImEXEvent("imexmobile_sign_in_success", payload);
|
||||
|
||||
Reference in New Issue
Block a user