Skip to content

Commit 7ff259f

Browse files
committed
parent component added
1 parent 3332b64 commit 7ff259f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/App.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import { validateToken } from './services/service'
2626

2727
const NavigationRoutes = lazy(() => import('./components/common/navigation/NavigationRoutes'))
2828
const Login = lazy(() => import('./components/login/Login'))
29-
const ApprovedModal = importComponentFromFELibrary('ApprovedModal')
29+
const NotificationApprovalViaEmailComponent = importComponentFromFELibrary('NotificationApprovalViaEmailComponent')
3030

3131
toast.configure({
3232
autoClose: 3000,
@@ -225,7 +225,7 @@ export default function App() {
225225
<BreadcrumbStore>
226226
<Switch>
227227
{!window._env_.K8S_CLIENT && <Route path={`/login`} component={Login} />}
228-
<Route path={`/approval`} component={ApprovedModal} />
228+
<Route path={`/approval`} component={NotificationApprovalViaEmailComponent} />
229229
<Route path="/" render={() => <NavigationRoutes />} />
230230
<Redirect
231231
to={window._env_.K8S_CLIENT ? '/' : `${URLS.LOGIN_SSO}${location.search}`}

0 commit comments

Comments
 (0)