From 0fc38f879ea26f79488eae5560b2ce71c4857e30 Mon Sep 17 00:00:00 2001 From: hanif salafi Date: Thu, 2 Jan 2025 11:00:46 +0700 Subject: [PATCH] feat: fixing error --- components/form/content/image-detail-form.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/form/content/image-detail-form.tsx b/components/form/content/image-detail-form.tsx index b9545af0..6caa44f6 100644 --- a/components/form/content/image-detail-form.tsx +++ b/components/form/content/image-detail-form.tsx @@ -450,7 +450,7 @@ export default function FormImageDetail() {
- {detail?.tags?.split(",").map((tag, index) => ( + {detail?.tags?.split(",").map((tag: string, index: number) => (