fix(journeys): use correct session_count property in entry point dropdown
This commit is contained in:
@@ -56,7 +56,7 @@ export default function JourneysPage() {
|
|||||||
{ value: '', label: 'All entry points' },
|
{ value: '', label: 'All entry points' },
|
||||||
...(entryPoints ?? []).map((ep) => ({
|
...(entryPoints ?? []).map((ep) => ({
|
||||||
value: ep.path,
|
value: ep.path,
|
||||||
label: `${ep.path} (${ep.sessions.toLocaleString()})`,
|
label: `${ep.path} (${ep.session_count.toLocaleString()})`,
|
||||||
})),
|
})),
|
||||||
]
|
]
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user