From 17692d6497cb1f33d58fb82eb2afccc77a3bc1d3 Mon Sep 17 00:00:00 2001 From: smanylov Date: Thu, 26 Mar 2026 11:57:42 +0700 Subject: [PATCH] rename filePageNotFound --- src/app/[locale]/pages/file/[id]/page.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/[locale]/pages/file/[id]/page.tsx b/src/app/[locale]/pages/file/[id]/page.tsx index 14736cc..35256ed 100644 --- a/src/app/[locale]/pages/file/[id]/page.tsx +++ b/src/app/[locale]/pages/file/[id]/page.tsx @@ -11,7 +11,7 @@ import FilePageNote from '@/app/ui/file-page/file-page-note'; import { getFileViolations } from '@/app/actions/violationActions'; import { viewFileInfo } from '@/app/actions/fileEntity'; import { useTranslations } from 'next-intl'; -import ViolationFileNotFound from '@/app/ui/file-page/file-page-file-not-found'; +import FilePageNotFound from '@/app/ui/file-page/file-page-file-not-found'; type MonitoringStatus = 'NONE' | 'MONITORING_DAILY' | 'MONITORING_WEEKLY' | 'MONITORING_MONTHLY'; type MimeType = 'image' | 'video' | 'audio' | 'document'; @@ -91,7 +91,7 @@ export default async function Page({ } catch (error) { return ( - + ) }