Removed cost center from tech login. IO-699

This commit is contained in:
Patrick Fic
2021-02-26 08:45:31 -08:00
parent 8aae31d3be
commit 3caf02f3f7
2 changed files with 6 additions and 2 deletions

View File

@@ -9,7 +9,11 @@ import {
import rootReducer from "./root.reducer";
import rootSaga from "./root.saga";
import * as Sentry from "@sentry/react";
const sentryReduxEnhancer = Sentry.createReduxEnhancer({
// Optionally pass options
});
const sagaMiddleWare = createSagaMiddleware();
const reduxSyncConfig = {
@@ -32,7 +36,8 @@ const composeEnhancers =
: compose;
const enhancer = composeEnhancers(
applyMiddleware(...middlewares)
applyMiddleware(...middlewares),
sentryReduxEnhancer
// other store enhancers if any
);

View File

@@ -252,7 +252,6 @@ exports.QUERY_EMPLOYEE_PIN = `query QUERY_EMPLOYEE_PIN($shopId: uuid!, $employee
first_name
employee_number
id
cost_center
pin
}
}`;