Fix missed translation keys

This commit is contained in:
vlalx
2025-05-09 20:03:32 +03:00
parent 840d5c2b66
commit 408822ab7f
8 changed files with 15 additions and 8 deletions

View File

@@ -84,11 +84,11 @@ export default function InvitationsTable({
},
{
accessorKey: "email",
header: "Email"
header: t('email')
},
{
accessorKey: "expiresAt",
header: "Expires At",
header: t('expiresAt'),
cell: ({ row }) => {
const expiresAt = new Date(row.original.expiresAt);
const isExpired = expiresAt < new Date();
@@ -102,7 +102,7 @@ export default function InvitationsTable({
},
{
accessorKey: "role",
header: "Role"
header: t('role')
}
];