From 52427fea93cb4afaf4e027bbb9777a2cd756cab9 Mon Sep 17 00:00:00 2001 From: Usman Baig Date: Mon, 16 Mar 2026 22:02:29 +0100 Subject: [PATCH] fix: change journey depth default to 4, max to 5 --- app/sites/[id]/journeys/page.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/app/sites/[id]/journeys/page.tsx b/app/sites/[id]/journeys/page.tsx index f1ddb9d..ec3c042 100644 --- a/app/sites/[id]/journeys/page.tsx +++ b/app/sites/[id]/journeys/page.tsx @@ -16,7 +16,7 @@ import { useJourneyEntryPoints, } from '@/lib/swr/dashboard' -const DEFAULT_DEPTH = 10 +const DEFAULT_DEPTH = 4 function getThisWeekRange(): { start: string; end: string } { const today = new Date() @@ -148,12 +148,12 @@ export default function JourneysPage() { {depth} steps deep - 10 steps + 5 steps setDepth(parseInt(e.target.value))}