Skip to content

Commit

Permalink
removed console.logs
Browse files Browse the repository at this point in the history
  • Loading branch information
YohanTz committed Feb 6, 2024
1 parent f5ecbdb commit 1332fbc
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,6 @@ function TransferSummary() {
totalSelectedNfts,
} = useNftSelection();

console.log(selectedCollectionAddress, selectedTokenIds);
const { data: selectedNfts } = api.nfts.getL1NftMetadataBatch.useQuery(
{
contractAddress: selectedCollectionAddress ?? "",
Expand Down
1 change: 0 additions & 1 deletion apps/web/src/server/api/routers/nfts.ts
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,6 @@ export const nftsRouter = createTRPCRouter({
}))
);

console.log(response);
return response.map((nft) => ({
collectionName: nft.contract.name,
image: nft.media[0]?.thumbnail,
Expand Down

0 comments on commit 1332fbc

Please sign in to comment.