ci(release): publish latest release

parent 51545ba6
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `QmZ2woTrzL5shcw9Ek6jqsLnHAMh1KGWGPkbeoMw3toRfC` - CIDv0: `QmX5dHDvYJwU2rZoLSCyZLiE8E3iSDEeyMRvbZxCAN6PJ9`
- CIDv1: `bafybeie645wzgpsz5isxptb3bdyo67rhtc4dfxjekenod6jvf6jxi7yqe4` - CIDv1: `bafybeieb37nluv6rhyctnziiqxybgimkhxcaz7dpm3efb4xgqes6tftk6i`
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://bafybeie645wzgpsz5isxptb3bdyo67rhtc4dfxjekenod6jvf6jxi7yqe4.ipfs.dweb.link/ - https://bafybeieb37nluv6rhyctnziiqxybgimkhxcaz7dpm3efb4xgqes6tftk6i.ipfs.dweb.link/
- https://bafybeie645wzgpsz5isxptb3bdyo67rhtc4dfxjekenod6jvf6jxi7yqe4.ipfs.cf-ipfs.com/ - https://bafybeieb37nluv6rhyctnziiqxybgimkhxcaz7dpm3efb4xgqes6tftk6i.ipfs.cf-ipfs.com/
- [ipfs://QmZ2woTrzL5shcw9Ek6jqsLnHAMh1KGWGPkbeoMw3toRfC/](ipfs://QmZ2woTrzL5shcw9Ek6jqsLnHAMh1KGWGPkbeoMw3toRfC/) - [ipfs://QmX5dHDvYJwU2rZoLSCyZLiE8E3iSDEeyMRvbZxCAN6PJ9/](ipfs://QmX5dHDvYJwU2rZoLSCyZLiE8E3iSDEeyMRvbZxCAN6PJ9/)
### 5.51.2 (2024-10-10) ### 5.51.3 (2024-10-10)
### Bug Fixes
* **web:** fix network filter on explore (#12894) b29b04a
web/5.51.2 web/5.51.3
\ No newline at end of file \ No newline at end of file
...@@ -86,7 +86,7 @@ export default function TableNetworkFilter() { ...@@ -86,7 +86,7 @@ export default function TableNetworkFilter() {
const chainId = supportedChainIdFromGQLChain(network) const chainId = supportedChainIdFromGQLChain(network)
const isSupportedChain = isSupportedChainCallback(chainId) const isSupportedChain = isSupportedChainCallback(chainId)
const chainInfo = isSupportedChain ? UNIVERSE_CHAIN_INFO[chainId] : undefined const chainInfo = isSupportedChain ? UNIVERSE_CHAIN_INFO[chainId] : undefined
return ( return chainInfo ? (
<TableNetworkItem <TableNetworkItem
key={network} key={network}
display={network} display={network}
...@@ -94,7 +94,7 @@ export default function TableNetworkFilter() { ...@@ -94,7 +94,7 @@ export default function TableNetworkFilter() {
toggleMenu={toggleMenu} toggleMenu={toggleMenu}
tab={tab} tab={tab}
/> />
) ) : null
})} })}
{BACKEND_NOT_YET_SUPPORTED_CHAIN_IDS.map((network) => { {BACKEND_NOT_YET_SUPPORTED_CHAIN_IDS.map((network) => {
const isSupportedChain = isSupportedChainCallback(network) const isSupportedChain = isSupportedChainCallback(network)
......
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