diff --git a/posthog/admin.py b/posthog/admin.py
index 228cd4b10fc0..870d323a689f 100644
--- a/posthog/admin.py
+++ b/posthog/admin.py
@@ -608,7 +608,7 @@ def members_count(self, organization: Organization):
def first_member(self, organization: Organization):
user = organization.members.order_by("id").first()
return (
- format_html(f'{user.email}')
+ format_html('{}', user.pk, user.email)
if user is not None
else "None"
)