fix(journeys): use correct session_count property in entry point dropdown

This commit is contained in:
Usman Baig
2026-03-12 21:39:31 +01:00
parent 49aa8aae60
commit 4cd9544672

View File

@@ -56,7 +56,7 @@ export default function JourneysPage() {
{ value: '', label: 'All entry points' },
...(entryPoints ?? []).map((ep) => ({
value: ep.path,
label: `${ep.path} (${ep.sessions.toLocaleString()})`,
label: `${ep.path} (${ep.session_count.toLocaleString()})`,
})),
]