From 9ac51e45a37cc6ac03625d1b310983dd5f4c63fa Mon Sep 17 00:00:00 2001 From: designDefined Date: Tue, 8 Aug 2023 14:28:51 +0900 Subject: [PATCH] =?UTF-8?q?hotfix:=20url=20=EC=82=AD=EC=A0=9C=20=EC=8B=9C?= =?UTF-8?q?=20=EC=9C=84=EC=97=90=EC=84=9C=EB=B6=80=ED=84=B0=20=EC=B1=84?= =?UTF-8?q?=EC=9A=B0=EA=B2=8C?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/rookie/Progress/PortfolioCard.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/rookie/Progress/PortfolioCard.tsx b/src/components/rookie/Progress/PortfolioCard.tsx index 5458675..f768f36 100644 --- a/src/components/rookie/Progress/PortfolioCard.tsx +++ b/src/components/rookie/Progress/PortfolioCard.tsx @@ -46,7 +46,7 @@ export default function PortfolioCard() { useEffect(() => { if (links) { const updated = linksInput.map((input, index) => - links.items[index] ? links.items[index] : input, + links.items[index] ? links.items[index] : { id: null, url: "" }, ); setLinksInput(updated); }