Skip to content

Commit

Permalink
fix(retention): fix crash in the retention modal for anonymous users
Browse files Browse the repository at this point in the history
  • Loading branch information
thmsobrmlr committed Dec 19, 2024
1 parent df3ea8d commit 314d048
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/scenes/retention/RetentionModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ export function RetentionModal(): JSX.Element | null {
<LemonButton
size="small"
to={urls.personByDistinctId(
personAppearances.person.distinct_ids[0]
personAppearances.person.distinct_ids?.[0]
)}
data-attr="retention-person-link"
>
Expand Down

0 comments on commit 314d048

Please sign in to comment.