Skip to content

Commit

Permalink
chore: cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
0xKheops committed Nov 3, 2023
1 parent 9ae4190 commit f2b6fdc
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
import { getNftMetadata } from "@core/util/getNftMetadata"
import { useQuery } from "@tanstack/react-query"
import { SignAlertMessage } from "@ui/domains/Sign/SignAlertMessage"
import { BigNumber } from "ethers"
import { FC, useMemo } from "react"
import { useTranslation } from "react-i18next"
import { UnsafeImage } from "talisman-ui"
Expand Down Expand Up @@ -30,7 +29,7 @@ export const EthSignBodyErc721Approve: FC = () => {
return {
operator: getContractCallArg(decodedTx, "operator"),
approve: operator !== ZERO_ADDRESS,
tokenId: BigNumber.from(getContractCallArg(decodedTx, "tokenId")),
tokenId: getContractCallArg(decodedTx, "tokenId"),
}
}, [decodedTx])

Expand Down

0 comments on commit f2b6fdc

Please sign in to comment.