diff --git a/src/core/public/application/ui/app_router.tsx b/src/core/public/application/ui/app_router.tsx index f2d2d1e6587ac..f1f22237c32db 100644 --- a/src/core/public/application/ui/app_router.tsx +++ b/src/core/public/application/ui/app_router.tsx @@ -64,9 +64,9 @@ export const AppRouter: FunctionComponent = ({ key={mounter.appRoute} path={mounter.appRoute} exact={mounter.exactRoute} - render={({ match: { url } }) => ( + render={({ match: { path } }) => ( ( { id: 'home', name: 'Home', - onClick: () => history.push(''), + onClick: () => history.push('/home'), 'data-test-subj': 'fooNavHome', }, { @@ -122,7 +122,8 @@ const FooApp = ({ history, context }: { history: History; context: AppMountConte