Skip to content

Commit f58e9cc

Browse files
committed
Fix incorrect redirect at UI root
1 parent 9ed0804 commit f58e9cc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/ui-app/src/app/pages/root/RootRedirectPage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { AppNavigation, useAppNavigation } from "@services/useAppNavigation.ts";
99
export const RootRedirectPage: FunctionComponent<any> = () => {
1010
const appNav: AppNavigation = useAppNavigation();
1111

12-
const redirect: string = appNav.createLink("/artifacts");
12+
const redirect: string = appNav.createLink("/explore");
1313
return (
1414
<Navigate to={redirect} replace />
1515
);

0 commit comments

Comments
 (0)