ci(release): publish latest release

parent 405d82d8
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `QmVMmzyLJzZeEwCaC5HcAseaRJrdoXFo442sw692wG2Def` - CIDv0: `Qmch1Nqcq2aasebbmbJJsXFMa78HWeUSHHk3PmRwKjanek`
- CIDv1: `bafybeidijorazwioy33ekcfbv2zyvthhjtklisrk6aoyxl6evmoro4jpka` - CIDv1: `bafybeigvhkndbrfme6cbhe4vnxrshzowhlb35tgmud4ntc7murhr5rnwne`
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org). The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
...@@ -10,14 +10,14 @@ You can also access the Uniswap Interface from an IPFS gateway. ...@@ -10,14 +10,14 @@ You can also access the Uniswap Interface from an IPFS gateway.
Your Uniswap settings are never remembered across different URLs. Your Uniswap settings are never remembered across different URLs.
IPFS gateways: IPFS gateways:
- https://bafybeidijorazwioy33ekcfbv2zyvthhjtklisrk6aoyxl6evmoro4jpka.ipfs.dweb.link/ - https://bafybeigvhkndbrfme6cbhe4vnxrshzowhlb35tgmud4ntc7murhr5rnwne.ipfs.dweb.link/
- [ipfs://QmVMmzyLJzZeEwCaC5HcAseaRJrdoXFo442sw692wG2Def/](ipfs://QmVMmzyLJzZeEwCaC5HcAseaRJrdoXFo442sw692wG2Def/) - [ipfs://Qmch1Nqcq2aasebbmbJJsXFMa78HWeUSHHk3PmRwKjanek/](ipfs://Qmch1Nqcq2aasebbmbJJsXFMa78HWeUSHHk3PmRwKjanek/)
## 5.102.0 (2025-07-03) ### 5.102.1 (2025-07-07)
### Features ### Bug Fixes
* **web:** Warn instead of error for known bug - prod (#21504) 534ada4 * **web:** Check for undefined approval amount - prod (#21531) 242239b
web/5.102.0 web/5.102.1
\ No newline at end of file \ No newline at end of file
...@@ -148,7 +148,12 @@ function usePendingApprovalAmount(token?: Token, spender?: string): BigNumber | ...@@ -148,7 +148,12 @@ function usePendingApprovalAmount(token?: Token, spender?: string): BigNumber |
if (!tx || isConfirmedTx(tx) || tx.info.type !== UniswapTransactionType.Approve) { if (!tx || isConfirmedTx(tx) || tx.info.type !== UniswapTransactionType.Approve) {
continue continue
} }
if (tx.info.spender === spender && tx.info.tokenAddress === token.address && isTransactionRecent(tx)) { if (
tx.info.spender === spender &&
tx.info.tokenAddress === token.address &&
isTransactionRecent(tx) &&
tx.info.approvalAmount !== undefined
) {
return BigNumber.from(tx.info.approvalAmount) return BigNumber.from(tx.info.approvalAmount)
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment