revert: remove frontend same-page filter, backend fix handles this

This commit is contained in:
Usman Baig
2026-03-12 23:12:12 +01:00
parent df394b85ef
commit a637d32446

View File

@@ -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}`