diff --git a/pages/settings/billing.tsx b/pages/settings/billing.tsx
index cf5db1f..d1bd80b 100644
--- a/pages/settings/billing.tsx
+++ b/pages/settings/billing.tsx
@@ -255,7 +255,12 @@ export default function Billing() {
- {t("seats_purchased", { count: account?.subscription?.quantity })}
+ {t(
+ account?.subscription?.quantity === 1
+ ? "seat_purchased"
+ : "seats_purchased",
+ { count: account?.subscription?.quantity }
+ )}
{inviteModal && setInviteModal(false)} />}
{deleteUserModal.isOpen && deleteUserModal.userId && (
diff --git a/public/locales/en/common.json b/public/locales/en/common.json
index 39303d4..4bafb1b 100644
--- a/public/locales/en/common.json
+++ b/public/locales/en/common.json
@@ -411,6 +411,7 @@
"active": "Active",
"manage_seats": "Manage Seats",
"seats_purchased": "{{count}} seats purchased",
+ "seat_purchased": "{{count}} seat purchased",
"date_added": "Date Added",
"resend_invite": "Resend Invitation",
"resend_invite_success": "Invitation Resent!",