Removed cost center from tech login. IO-699
This commit is contained in:
@@ -9,7 +9,11 @@ import {
|
|||||||
|
|
||||||
import rootReducer from "./root.reducer";
|
import rootReducer from "./root.reducer";
|
||||||
import rootSaga from "./root.saga";
|
import rootSaga from "./root.saga";
|
||||||
|
import * as Sentry from "@sentry/react";
|
||||||
|
|
||||||
|
const sentryReduxEnhancer = Sentry.createReduxEnhancer({
|
||||||
|
// Optionally pass options
|
||||||
|
});
|
||||||
const sagaMiddleWare = createSagaMiddleware();
|
const sagaMiddleWare = createSagaMiddleware();
|
||||||
|
|
||||||
const reduxSyncConfig = {
|
const reduxSyncConfig = {
|
||||||
@@ -32,7 +36,8 @@ const composeEnhancers =
|
|||||||
: compose;
|
: compose;
|
||||||
|
|
||||||
const enhancer = composeEnhancers(
|
const enhancer = composeEnhancers(
|
||||||
applyMiddleware(...middlewares)
|
applyMiddleware(...middlewares),
|
||||||
|
sentryReduxEnhancer
|
||||||
// other store enhancers if any
|
// other store enhancers if any
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@@ -252,7 +252,6 @@ exports.QUERY_EMPLOYEE_PIN = `query QUERY_EMPLOYEE_PIN($shopId: uuid!, $employee
|
|||||||
first_name
|
first_name
|
||||||
employee_number
|
employee_number
|
||||||
id
|
id
|
||||||
cost_center
|
|
||||||
pin
|
pin
|
||||||
}
|
}
|
||||||
}`;
|
}`;
|
||||||
|
|||||||
Reference in New Issue
Block a user