Skip to content

Commit 6afb093

Browse files
committed
add redirect to flow logic
1 parent d98d407 commit 6afb093

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

src/new-landingpage/src/DashboardPage.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,9 @@ export default function DashboardPage() {
2525
}, [cookies, navigate]);
2626

2727
const goToFlows = () => {
28-
// Main app flow route
29-
navigate("/flows");
28+
// Main app flow route lives outside the /new/landingpage basename
29+
console.log("[DashboardPage] Navigating to /flows");
30+
window.location.assign("/flows");
3031
};
3132

3233
return (

0 commit comments

Comments
 (0)