From 25d0f4d07d011b9f52a3a0277eb63dd26884c167 Mon Sep 17 00:00:00 2001 From: Justin Edmund Date: Mon, 27 Feb 2023 21:18:13 -0800 Subject: [PATCH] Fix mistake in fix build error --- components/ContentUpdate/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/ContentUpdate/index.tsx b/components/ContentUpdate/index.tsx index 115caab9..33aa6a32 100644 --- a/components/ContentUpdate/index.tsx +++ b/components/ContentUpdate/index.tsx @@ -35,7 +35,7 @@ const ContentUpdate = ({ if (newItems && newItems[key]) { const items = newItems[key] elements = items - ? items.map((id) => { + ? items.map((id, i) => { return }) : []