From de0c6831c183745c72c276f9833ccfa2309290fc Mon Sep 17 00:00:00 2001 From: saseungmin Date: Sat, 6 Jan 2024 15:45:56 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20=EC=97=B0=EB=8F=84=EA=B0=80=20+1=20?= =?UTF-8?q?=EC=B6=94=EA=B0=80=EB=90=98=EC=96=B4=20api=EA=B0=80=20=ED=98=B8?= =?UTF-8?q?=EC=B6=9C=EB=90=98=EB=8A=94=20=EC=9D=B4=EC=8A=88=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/main/BirthSongResult/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/main/BirthSongResult/index.tsx b/src/components/main/BirthSongResult/index.tsx index e07e8ae..b8d9bfe 100644 --- a/src/components/main/BirthSongResult/index.tsx +++ b/src/components/main/BirthSongResult/index.tsx @@ -36,7 +36,7 @@ function BirthSongResult({ birthDate }: Props) { } = useQuery({ queryKey: ['birthSong', birthDate], queryFn: () => fetchSongResult({ - year: date.year() + 1, + year: date.year(), month: date.month() + 1, day: date.date(), }),