diff --git a/client/src/components/board/PostContent/index.tsx b/client/src/components/board/PostContent/index.tsx index 8115a3fb..5bcf6f32 100644 --- a/client/src/components/board/PostContent/index.tsx +++ b/client/src/components/board/PostContent/index.tsx @@ -22,7 +22,7 @@ function PostContent({ postOriginId }: IProps) { const { data } = useQuery({ queryKey: [`${postOriginId}`], - queryFn: async () => await postManager.getPost({ postOriginId }), + queryFn: () => postManager.getPost({ postOriginId }), retry: false, suspense: true, });