X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/6318db42202cc63f179dfca59e1793dab9b22404..07086d1ce2f74956fd3a498f184fcc0274f3e38d:/src/store/auth/auth-action-session.ts diff --git a/src/store/auth/auth-action-session.ts b/src/store/auth/auth-action-session.ts index 10f17c02f2..a02f922df4 100644 --- a/src/store/auth/auth-action-session.ts +++ b/src/store/auth/auth-action-session.ts @@ -27,6 +27,7 @@ const getClusterConfig = async (origin: string, apiClient: AxiosInstance): Promi configFromDD = { baseUrl: normalizeURLPath(dd.baseUrl), keepWebServiceUrl: dd.keepWebServiceUrl, + keepWebInlineServiceUrl: dd.keepWebInlineServiceUrl, remoteHosts: dd.remoteHosts, rootUrl: dd.rootUrl, uuidPrefix: dd.uuidPrefix, @@ -191,10 +192,11 @@ export const validateSessions = (useApiClient?: AxiosInstance) => places in Workbench2. */ await dispatch(validateSession(session, activeSession, useApiClient)); } catch (e) { - dispatch(snackbarActions.OPEN_SNACKBAR({ - message: e.message, - kind: SnackbarKind.ERROR - })); + // Don't do anything here. User may get + // spammed with multiple messages that are not + // helpful. They can see the individual + // errors by going to site manager and trying + // to toggle the session. } } }