+
+ Subscription tier:
+
+ {displayUser?.subscription_tier ?? 'β'}
+
+
+
+ Subscription status:
+
+ {displayUser?.subscription_status ?? 'β'}
+
+
+
+ Member since:
+
+ {displayUser?.created_at
+ ? new Date(displayUser.created_at).toLocaleDateString(undefined, {
+ year: 'numeric',
+ month: 'long',
+ day: 'numeric',
+ })
+ : 'β'}
+
+
+ {displayUser?.oauth_provider && (
+
+ Linked account:
+
+ {displayUser.oauth_provider}
+
+
+ )}
+ {displayUser?.last_login_at && (
+
+ Last login:
+
+ {new Date(displayUser.last_login_at).toLocaleString()}
+
+
+ )}
+