️ Show plan in user nav item

This commit is contained in:
Luke Vella 2025-07-15 11:26:28 +01:00
parent 9be12f28d9
commit e94eed373d
No known key found for this signature in database
GPG key ID: 469CAD687F0D784C
2 changed files with 6 additions and 1 deletions

View file

@ -126,6 +126,7 @@
"createdTime": "Created {relativeTime}",
"permissionDeniedParticipant": "If you are not the poll creator, you should go to the Invite Page.",
"goToInvite": "Go to Invite Page",
"planFree": "Free",
"planPro": "Pro",
"Billing": "Billing",
"becomeATranslator": "Help translate",

View file

@ -121,7 +121,11 @@ export async function SpaceSidebar({
name={user.name}
image={user.image}
plan={
<span className="capitalize">{activeSpace.role.toLowerCase()}</span>
user.isPro ? (
<Trans i18nKey="planPro" defaults="Pro" />
) : (
<Trans i18nKey="planFree" defaults="Free" />
)
}
/>
</SidebarFooter>