From 7e16ec68b091a82d2c6ac86f593e5ad2bc2f5496 Mon Sep 17 00:00:00 2001 From: hanbinchoi Date: Mon, 18 Dec 2023 18:03:44 +0900 Subject: [PATCH 1/2] =?UTF-8?q?[FE]=20=E2=9C=A8=20=EC=95=8C=EB=A6=BC=20?= =?UTF-8?q?=EB=B2=84=ED=8A=BC=20=EC=B6=94=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/src/app/garden/[id]/page.tsx | 2 ++ client/src/app/leaf/[userId]/[leafId]/page.tsx | 2 ++ client/src/app/page.tsx | 2 ++ client/src/app/post/[id]/page.tsx | 1 - 4 files changed, 6 insertions(+), 1 deletion(-) diff --git a/client/src/app/garden/[id]/page.tsx b/client/src/app/garden/[id]/page.tsx index cfccfd5c..a2444114 100644 --- a/client/src/app/garden/[id]/page.tsx +++ b/client/src/app/garden/[id]/page.tsx @@ -20,6 +20,7 @@ import { PurchaseModal, EmptyInventoryModal, } from '@/components/garden'; +import { NotificationButton } from '@/components/common'; interface GardenProps { params: { id: string }; @@ -69,6 +70,7 @@ export default function Garden({ params }: GardenProps) { {isOpen && renderModal(type)} +