Skip to content

Commit

Permalink
fix: questionDetail 질문 미리보기 고정값으로 나오던 이슈 해결
Browse files Browse the repository at this point in the history
  • Loading branch information
semnil5202 committed Aug 27, 2024
1 parent 148484f commit 0037faf
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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();

Expand Down

0 comments on commit 0037faf

Please sign in to comment.