From 2d1b043023ef36c9bf83a9c07bac8a91ad92b52a Mon Sep 17 00:00:00 2001 From: nalsae Date: Tue, 12 Dec 2023 15:56:18 +0900 Subject: [PATCH] =?UTF-8?q?[FE]=20=F0=9F=90=9B=20Fix=20:=20=EB=B0=A9?= =?UTF-8?q?=EB=AA=85=EB=A1=9D=20=EB=AA=A8=EB=8B=AC=20=EA=B4=80=EB=A0=A8=20?= =?UTF-8?q?=EC=9D=B4=EC=8A=88=20=ED=95=B4=EA=B2=B0=20(#352)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/src/app/garden/[id]/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/app/garden/[id]/page.tsx b/client/src/app/garden/[id]/page.tsx index 5f82af07..371cc803 100644 --- a/client/src/app/garden/[id]/page.tsx +++ b/client/src/app/garden/[id]/page.tsx @@ -43,7 +43,7 @@ export default function Garden({ params }: GardenProps) { if (type === 'purchase') return ; if (type === 'emptyInventory') return ; if (type === 'share') return ; - if (type === 'guestbook') return ; + if (type === 'guestbook') return ; }; const isOwner = userId === params.id;