diff --git a/src/app/ui/dashboard/new/dashboard-files-info.tsx b/src/app/ui/dashboard/new/dashboard-files-info.tsx
index 7a7e2ef..12bca4a 100644
--- a/src/app/ui/dashboard/new/dashboard-files-info.tsx
+++ b/src/app/ui/dashboard/new/dashboard-files-info.tsx
@@ -25,10 +25,6 @@ export default function DashboardFilesInfo() {
{t('PROTECTED')}
{filesInfo?.images.protected ? filesInfo?.images.protected : 0}
-
- {t('violations')}
- {filesInfo?.images.violation ? filesInfo?.images.violation : 0}
-
@@ -47,10 +43,6 @@ export default function DashboardFilesInfo() {
{t('PROTECTED')}
{filesInfo?.videos.protected ? filesInfo?.videos.protected : 0}
-
- {t('violations')}
- {filesInfo?.videos.violation ? filesInfo?.videos.violation : 0}
-
@@ -69,10 +61,6 @@ export default function DashboardFilesInfo() {
{t('PROTECTED')}
{filesInfo?.audios.protected ? filesInfo?.audios.protected : 0}
-
- {t('violations')}
- {filesInfo?.audios.violation ? filesInfo?.audios.violation : 0}
-
@@ -85,16 +73,12 @@ export default function DashboardFilesInfo() {
{t('size')}
- {filesInfo?.documents.check? convertBytes(filesInfo?.documents.check) : 0}
+ {filesInfo?.documents.size? convertBytes(filesInfo?.documents.size) : 0}
{t('PROTECTED')}
{filesInfo?.documents.protected ? filesInfo?.documents.protected : 0}
-
- {t('violations')}
- {filesInfo?.documents.violation ? filesInfo?.documents.violation : 0}
-