wip bump
This commit is contained in:
parent
44a3cd160f
commit
41d05a0dd1
3 changed files with 10 additions and 5 deletions
|
@ -158,7 +158,7 @@
|
|||
"json-loader": "^0.5.4",
|
||||
"lbry-format": "https://github.com/lbryio/lbry-format.git",
|
||||
"lbry-redux": "lbryio/lbry-redux#32b578707116d45f5b51b7ab523d200e75668676",
|
||||
"lbryinc": "lbryio/lbryinc#c9ced4f226e06f4f188cb8dc31b561e1c27c5266",
|
||||
"lbryinc": "lbryio/lbryinc#97fc74315c89580f9fa2408643b0f4feef42750a",
|
||||
"lint-staged": "^7.0.2",
|
||||
"localforage": "^1.7.1",
|
||||
"lodash-es": "^4.17.14",
|
||||
|
|
|
@ -295,6 +295,7 @@ function AppWrapper() {
|
|||
setKeycloakReady(true);
|
||||
}
|
||||
};
|
||||
const isDev = process.env.NODE_ENV !== 'production';
|
||||
|
||||
return (
|
||||
<Provider store={store}>
|
||||
|
@ -304,11 +305,15 @@ function AppWrapper() {
|
|||
loading={<div className="main--launching" />}
|
||||
>
|
||||
<Fragment>
|
||||
{readyToLaunch ? (
|
||||
{readyToLaunch && keycloakReady ? (
|
||||
<ReactKeycloakProvider
|
||||
authClient={keycloak}
|
||||
onEvent={eventLogger}
|
||||
initOptions={{ onLoad: 'check-sso', silentCheckSsoFallback: false, redirectUri: `${SITE_URL}/` }} // from npmjs docs for @react-keycloak/web
|
||||
initOptions={{
|
||||
onLoad: 'check-sso',
|
||||
silentCheckSsoFallback: false,
|
||||
redirectUri: isDev ? `http://localhost:9090/` : `${SITE_URL}/`,
|
||||
}} // from npmjs docs for @react-keycloak/web
|
||||
>
|
||||
<ConnectedRouter history={history}>
|
||||
<ErrorBoundary>
|
||||
|
|
|
@ -10186,9 +10186,9 @@ lbry-redux@lbryio/lbry-redux#32b578707116d45f5b51b7ab523d200e75668676:
|
|||
reselect "^3.0.0"
|
||||
uuid "^8.3.1"
|
||||
|
||||
lbryinc@lbryio/lbryinc#c9ced4f226e06f4f188cb8dc31b561e1c27c5266:
|
||||
lbryinc@lbryio/lbryinc#97fc74315c89580f9fa2408643b0f4feef42750a:
|
||||
version "0.0.1"
|
||||
resolved "https://codeload.github.com/lbryio/lbryinc/tar.gz/c9ced4f226e06f4f188cb8dc31b561e1c27c5266"
|
||||
resolved "https://codeload.github.com/lbryio/lbryinc/tar.gz/97fc74315c89580f9fa2408643b0f4feef42750a"
|
||||
dependencies:
|
||||
reselect "^3.0.0"
|
||||
|
||||
|
|
Loading…
Reference in a new issue