From 0bfb3c2697c8ca1e10f33e01bd1a91bf55635d45 Mon Sep 17 00:00:00 2001 From: Mamalizz Date: Thu, 27 Feb 2025 20:47:37 +0330 Subject: [PATCH] changed type --- frontend/components/global/FileInput.vue | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/frontend/components/global/FileInput.vue b/frontend/components/global/FileInput.vue index e0e3beb..8d0fad7 100644 --- a/frontend/components/global/FileInput.vue +++ b/frontend/components/global/FileInput.vue @@ -6,13 +6,7 @@ import { useToast } from "~/composables/global/useToast"; // types type Props = { - modelValue: { - id: number; - file_link: string; - date: string; - size: number; - name: string; - }[]; + modelValue: ServerFile[]; loading?: boolean; };