From 1d637934007deb3352f9596d46fabe179f8ea6d7 Mon Sep 17 00:00:00 2001 From: Kalina Georgieva Date: Tue, 18 Jun 2024 12:37:02 +0300 Subject: [PATCH] Update home-ui config Signed-off-by: Kalina Georgieva --- browser-platform-home-react-wsp/src/main/auth0-main.tsx | 2 +- browser-platform-home-react-wsp/src/main/no-auth-main.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/browser-platform-home-react-wsp/src/main/auth0-main.tsx b/browser-platform-home-react-wsp/src/main/auth0-main.tsx index 603acc2..2004561 100644 --- a/browser-platform-home-react-wsp/src/main/auth0-main.tsx +++ b/browser-platform-home-react-wsp/src/main/auth0-main.tsx @@ -5,7 +5,7 @@ import { useMemo } from "react"; export const Auth0Main = () => { const ioConnectHomeConfig: IOConnectHomeConfig = useMemo( () => ({ - ioConnectConfig: getIoConfig(), + getIOConnectConfig: getIoConfig, login: { type: 'auth0', providerOptions: { diff --git a/browser-platform-home-react-wsp/src/main/no-auth-main.tsx b/browser-platform-home-react-wsp/src/main/no-auth-main.tsx index 289ebd7..9b68e22 100644 --- a/browser-platform-home-react-wsp/src/main/no-auth-main.tsx +++ b/browser-platform-home-react-wsp/src/main/no-auth-main.tsx @@ -5,7 +5,7 @@ import { useMemo } from "react"; export const NoAuthMain = () => { const ioConnectHomeConfig: IOConnectHomeConfig = useMemo( () => ({ - ioConnectConfig: getIoConfig(), + getIOConnectConfig: getIoConfig, }), [] );