Skip to content

Commit

Permalink
style: console.log 삭제
Browse files Browse the repository at this point in the history
  • Loading branch information
dydals3440 committed Feb 17, 2024
1 parent 65bab87 commit 3cb21df
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/hooks/signature/queries/useGetSignatureComments.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ const useGetSignatureComments = (signatureId, take) => {
initialPageParam: 0,
getNextPageParam: (lastPage, allPages, lastPageParam) => {
const meta = lastPage?.data?.data?.meta;
console.log(lastPage);
if (meta?.hasNextData) {
return meta?.cursor;
} else {
Expand Down

0 comments on commit 3cb21df

Please sign in to comment.