Skip to content

Commit

Permalink
chore: remove console log (#294)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyuhho committed Jun 15, 2024
1 parent 2cd6546 commit b6edd86
Showing 1 changed file with 1 addition and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,7 @@ function BuyerOpenConsultSection({ isChecked }: BuyerOpenConsultSectionProps) {
} = useInfiniteQuery<GetPostsCutsomersResponse[]>({
queryKey: ['infiniteGetPostsCutsomersResponse', isChecked],
queryFn: async ({ pageParam }) =>
await getPostsCutsomers(pageParam).then((res) => {
console.log(res.data);
return res.data;
}),
await getPostsCutsomers(pageParam).then((res) => res.data),
initialPageParam: {
filter: isChecked,
postId: 0,
Expand Down

0 comments on commit b6edd86

Please sign in to comment.