fix tier and remove test interval

This commit is contained in:
miloschwartz
2025-10-13 17:01:15 -07:00
parent 2a2a550a6a
commit 881eac4722
2 changed files with 2 additions and 3 deletions

View File

@@ -96,7 +96,7 @@ export function LicenseKeysDataTable({
},
cell: ({ row }) => {
const tier = row.original.tier;
tier === "enterprise"
return tier === "enterprise"
? t("licenseTierEnterprise")
: t("licenseTierPersonal");
}