diff --git a/package.json b/package.json index f3c2b1c..886fca5 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "no-copy-frontend", - "version": "0.26.0", + "version": "0.27.0", "private": true, "scripts": { "dev": "next dev -p 2999", diff --git a/src/app/components/tanstakTable.tsx b/src/app/components/tanstakTable.tsx index 77b0ebe..4c3d7ac 100644 --- a/src/app/components/tanstakTable.tsx +++ b/src/app/components/tanstakTable.tsx @@ -230,7 +230,9 @@ export default function TanstakFilesTable({ fileType }: { fileType: string }) { {cutFileName(row.original.fileName)}
- {cutFileExtension(row.original.fileName)} {t(row.original?.protectStatus)} + {cutFileExtension(row.original.fileName)} + {row.original?.protectStatus ? t(row.original?.protectStatus) : t('error')} + diff --git a/src/app/ui/dashboard/new/dashboard-user-files.tsx b/src/app/ui/dashboard/new/dashboard-user-files.tsx index 1bef3cd..34632c7 100644 --- a/src/app/ui/dashboard/new/dashboard-user-files.tsx +++ b/src/app/ui/dashboard/new/dashboard-user-files.tsx @@ -145,7 +145,7 @@ export default function DashboardUserFiles() {
- {t(file.protectStatus)} + {file.protectStatus ? t(file.protectStatus) : t('error')}
)