diff --git a/apps/start/src/components/events/table/columns.tsx b/apps/start/src/components/events/table/columns.tsx index 8f717a75..197ef28c 100644 --- a/apps/start/src/components/events/table/columns.tsx +++ b/apps/start/src/components/events/table/columns.tsx @@ -106,7 +106,7 @@ export function useColumns() { if (profile) { return ( {getProfileName(profile)} @@ -117,7 +117,7 @@ export function useColumns() { if (profileId && profileId !== deviceId) { return ( Unknown @@ -128,7 +128,7 @@ export function useColumns() { if (deviceId) { return ( Anonymous diff --git a/apps/start/src/components/notifications/table/columns.tsx b/apps/start/src/components/notifications/table/columns.tsx index ac97ed26..ae1f3e21 100644 --- a/apps/start/src/components/notifications/table/columns.tsx +++ b/apps/start/src/components/notifications/table/columns.tsx @@ -149,7 +149,7 @@ export function useColumns() { } return ( {event.profileId} diff --git a/apps/start/src/components/profiles/table/columns.tsx b/apps/start/src/components/profiles/table/columns.tsx index 40cbf424..aef3273d 100644 --- a/apps/start/src/components/profiles/table/columns.tsx +++ b/apps/start/src/components/profiles/table/columns.tsx @@ -20,7 +20,7 @@ export function useColumns(type: 'profiles' | 'power-users') { const profile = row.original; return ( diff --git a/apps/start/src/components/sessions/table/columns.tsx b/apps/start/src/components/sessions/table/columns.tsx index 33f11bc7..e01cedcf 100644 --- a/apps/start/src/components/sessions/table/columns.tsx +++ b/apps/start/src/components/sessions/table/columns.tsx @@ -62,7 +62,7 @@ export function useColumns() { if (session.profile) { return ( {getProfileName(session.profile)} @@ -71,7 +71,7 @@ export function useColumns() { } return ( {session.profileId} diff --git a/apps/start/src/modals/event-details.tsx b/apps/start/src/modals/event-details.tsx index 1dbb3c05..6a97f8b6 100644 --- a/apps/start/src/modals/event-details.tsx +++ b/apps/start/src/modals/event-details.tsx @@ -232,7 +232,7 @@ function EventDetailsContent({ id, createdAt, projectId }: Props) { {profile && ( popModal()} - href={`/profiles/${profile.id}`} + href={`/profiles/${encodeURIComponent(profile.id)}`} className="card p-4 py-2 col gap-2 hover:bg-def-100" >
diff --git a/apps/start/src/modals/view-chart-users.tsx b/apps/start/src/modals/view-chart-users.tsx index 44f4380e..d2e926ac 100644 --- a/apps/start/src/modals/view-chart-users.tsx +++ b/apps/start/src/modals/view-chart-users.tsx @@ -25,7 +25,7 @@ const ProfileItem = ({ profile }: { profile: any }) => { return ( {