From 0037fafe2c4f32865c7247eca5f3fb505b88dea5 Mon Sep 17 00:00:00 2001 From: semnil5202 Date: Wed, 28 Aug 2024 00:47:39 +0900 Subject: [PATCH] =?UTF-8?q?fix:=20questionDetail=20=EC=A7=88=EB=AC=B8=20?= =?UTF-8?q?=EB=AF=B8=EB=A6=AC=EB=B3=B4=EA=B8=B0=20=EA=B3=A0=EC=A0=95?= =?UTF-8?q?=EA=B0=92=EC=9C=BC=EB=A1=9C=20=EB=82=98=EC=98=A4=EB=8D=98=20?= =?UTF-8?q?=EC=9D=B4=EC=8A=88=20=ED=95=B4=EA=B2=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../select-relay-question/components/Question/Question.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/web-domains/src/relay-question/features/select-relay-question/components/Question/Question.tsx b/packages/web-domains/src/relay-question/features/select-relay-question/components/Question/Question.tsx index a75bfee4..d29330a7 100644 --- a/packages/web-domains/src/relay-question/features/select-relay-question/components/Question/Question.tsx +++ b/packages/web-domains/src/relay-question/features/select-relay-question/components/Question/Question.tsx @@ -19,7 +19,7 @@ interface QuestionProps { export const Question = ({ id, imageUrl, title, usedCount, meetingId }: QuestionProps) => { const openModal = useModal(); - const { refetch } = useRelayQuestionQuery(1); + const { refetch } = useRelayQuestionQuery(id); const router = useRouter();