From 26db6f10c9e87dbeccb817fb5ddf47b62f362904 Mon Sep 17 00:00:00 2001 From: Jungu Lee <1zzangjun@gmail.com> Date: Fri, 12 Jan 2024 17:02:53 +0900 Subject: [PATCH] =?UTF-8?q?FIX=20:=20=EC=9D=B8=ED=84=B0=ED=8E=98=EC=9D=B4?= =?UTF-8?q?=EC=8A=A4=20=EB=B3=80=EA=B2=BD=EC=97=90=20=EB=94=B0=EB=A5=B8=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- client/src/components/newpost/SearchAlcoholInput.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/components/newpost/SearchAlcoholInput.tsx b/client/src/components/newpost/SearchAlcoholInput.tsx index 4f8f5b4..d5793b9 100644 --- a/client/src/components/newpost/SearchAlcoholInput.tsx +++ b/client/src/components/newpost/SearchAlcoholInput.tsx @@ -83,7 +83,7 @@ const SearchAlcoholInput = ({ {isSuccess && - data?.list.map((alcoholData) => ( + data?.content.map((alcoholData) => ( ))} {isLoading && } - {data?.list.length === 0 && <>검색결과가 없어요} + {data?.content.length === 0 && <>검색결과가 없어요} )}