From a637d32446d6d8f440c561877e0874a104c0ab07 Mon Sep 17 00:00:00 2001 From: Usman Baig Date: Thu, 12 Mar 2026 23:12:12 +0100 Subject: [PATCH] revert: remove frontend same-page filter, backend fix handles this --- components/journeys/SankeyDiagram.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/components/journeys/SankeyDiagram.tsx b/components/journeys/SankeyDiagram.tsx index 6dc6a32..77e3ba9 100644 --- a/components/journeys/SankeyDiagram.tsx +++ b/components/journeys/SankeyDiagram.tsx @@ -69,7 +69,6 @@ function buildSankeyData(transitions: PathTransition[], depth: number) { for (const t of transitions) { if (t.step_index >= numCols || t.step_index + 1 >= numCols) continue - if (t.from_path === t.to_path) continue // skip same-page transitions (reloads) const fromId = `${t.step_index}:${t.from_path}` const toId = `${t.step_index + 1}:${t.to_path}`