ci(release): publish latest release

parent eb6cc098
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `QmP3HJDhveJzTkfDPfPhq1XHGUv3unqqTvgYSHwrsSaM2R` - CIDv0: `QmfZnGkqmvUSeByDRpHFCSFU4ANdwD4XXE8WXxhTjnu35z`
- CIDv1: `bafybeiakncneysroeo4fn4a5djrsantokobvtjz4d7cukzcbkoqobmlnli` - CIDv1: `bafybeih76pdzu4rnkttpfyyla3tkd65x6ma6xhtzdqb6xn4l6vgutggjde`
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,10 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway. ...@@ -10,10 +10,15 @@ 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://bafybeiakncneysroeo4fn4a5djrsantokobvtjz4d7cukzcbkoqobmlnli.ipfs.dweb.link/ - https://bafybeih76pdzu4rnkttpfyyla3tkd65x6ma6xhtzdqb6xn4l6vgutggjde.ipfs.dweb.link/
- https://bafybeiakncneysroeo4fn4a5djrsantokobvtjz4d7cukzcbkoqobmlnli.ipfs.cf-ipfs.com/ - https://bafybeih76pdzu4rnkttpfyyla3tkd65x6ma6xhtzdqb6xn4l6vgutggjde.ipfs.cf-ipfs.com/
- [ipfs://QmP3HJDhveJzTkfDPfPhq1XHGUv3unqqTvgYSHwrsSaM2R/](ipfs://QmP3HJDhveJzTkfDPfPhq1XHGUv3unqqTvgYSHwrsSaM2R/) - [ipfs://QmfZnGkqmvUSeByDRpHFCSFU4ANdwD4XXE8WXxhTjnu35z/](ipfs://QmfZnGkqmvUSeByDRpHFCSFU4ANdwD4XXE8WXxhTjnu35z/)
### 5.53.5 (2024-10-16) ### 5.53.6 (2024-10-17)
### Bug Fixes
* **web:** fallback to local activity if remote is empty (#13136) 33f4425
web/5.53.5 web/5.53.6
\ No newline at end of file \ No newline at end of file
...@@ -47,7 +47,8 @@ function combineActivities(localMap: ActivityMap = {}, remoteMap: ActivityMap = ...@@ -47,7 +47,8 @@ function combineActivities(localMap: ActivityMap = {}, remoteMap: ActivityMap =
if (localActivity.cancelled) { if (localActivity.cancelled) {
// Hides misleading activities caused by cross-chain nonce collisions previously being incorrectly labelled as cancelled txs in redux // Hides misleading activities caused by cross-chain nonce collisions previously being incorrectly labelled as cancelled txs in redux
if (localActivity.chainId !== remoteActivity.chainId) { // If there is no remote activity fallback to local activity
if (remoteActivity.chainId && localActivity.chainId !== remoteActivity.chainId) {
acc.push(remoteActivity) acc.push(remoteActivity)
return acc return acc
} }
......
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