From: Daniel Kos Date: Tue, 18 Sep 2018 13:26:16 +0000 (+0200) Subject: Disable general error notification X-Git-Url: https://git.arvados.org/arvados.git/commitdiff_plain/24a765a3b53d6140d0f2456bffe786c277725c02 Disable general error notification No issue # Arvados-DCO-1.1-Signed-off-by: Daniel Kos --- diff --git a/src/index.tsx b/src/index.tsx index 0d026f2389..020f5482cd 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -68,8 +68,8 @@ fetchConfig() store.dispatch(progressIndicatorActions.TOGGLE_WORKING({ id, working })); }, errorFn: (id, error) => { - console.error("Backend error:", error); - store.dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Backend error", kind: SnackbarKind.ERROR })); + // console.error("Backend error:", error); + // store.dispatch(snackbarActions.OPEN_SNACKBAR({ message: "Backend error", kind: SnackbarKind.ERROR })); } }); const store = configureStore(history, services);