ci(release): publish latest release

parent 3f89350b
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `QmX5dHDvYJwU2rZoLSCyZLiE8E3iSDEeyMRvbZxCAN6PJ9` - CIDv0: `QmYL6y6Rw6FpUGdycyASv3KGf54bpmPeZQKn6Bxq4JakEF`
- CIDv1: `bafybeieb37nluv6rhyctnziiqxybgimkhxcaz7dpm3efb4xgqes6tftk6i` - CIDv1: `bafybeieuod5jwzai74wxpuokl3bwl2jsf2kcbohjjllbc3lkwftkumlduq`
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,15 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway. ...@@ -10,15 +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://bafybeieb37nluv6rhyctnziiqxybgimkhxcaz7dpm3efb4xgqes6tftk6i.ipfs.dweb.link/ - https://bafybeieuod5jwzai74wxpuokl3bwl2jsf2kcbohjjllbc3lkwftkumlduq.ipfs.dweb.link/
- https://bafybeieb37nluv6rhyctnziiqxybgimkhxcaz7dpm3efb4xgqes6tftk6i.ipfs.cf-ipfs.com/ - https://bafybeieuod5jwzai74wxpuokl3bwl2jsf2kcbohjjllbc3lkwftkumlduq.ipfs.cf-ipfs.com/
- [ipfs://QmX5dHDvYJwU2rZoLSCyZLiE8E3iSDEeyMRvbZxCAN6PJ9/](ipfs://QmX5dHDvYJwU2rZoLSCyZLiE8E3iSDEeyMRvbZxCAN6PJ9/) - [ipfs://QmYL6y6Rw6FpUGdycyASv3KGf54bpmPeZQKn6Bxq4JakEF/](ipfs://QmYL6y6Rw6FpUGdycyASv3KGf54bpmPeZQKn6Bxq4JakEF/)
### 5.51.3 (2024-10-10) ### 5.51.4 (2024-10-10)
### Bug Fixes ### Bug Fixes
* **web:** fix network filter on explore (#12894) b29b04a * **web:** enable token swap on non mainnet tdp for legacy swap - prod (#12900) cb91f9e
web/5.51.3 web/5.51.4
\ No newline at end of file \ No newline at end of file
...@@ -16,7 +16,6 @@ import { NATIVE_CHAIN_ID } from 'constants/tokens' ...@@ -16,7 +16,6 @@ import { NATIVE_CHAIN_ID } from 'constants/tokens'
import { getTokenDetailsURL } from 'graphql/data/util' import { getTokenDetailsURL } from 'graphql/data/util'
import { useCurrency } from 'hooks/Tokens' import { useCurrency } from 'hooks/Tokens'
import { useScreenSize } from 'hooks/screenSize/useScreenSize' import { useScreenSize } from 'hooks/screenSize/useScreenSize'
import { useAccount } from 'hooks/useAccount'
import useParsedQueryString from 'hooks/useParsedQueryString' import useParsedQueryString from 'hooks/useParsedQueryString'
import { ScrollDirection, useScroll } from 'hooks/useScroll' import { ScrollDirection, useScroll } from 'hooks/useScroll'
import deprecatedStyled from 'lib/styled-components' import deprecatedStyled from 'lib/styled-components'
...@@ -81,7 +80,6 @@ function useSwapInitialInputCurrency() { ...@@ -81,7 +80,6 @@ function useSwapInitialInputCurrency() {
function TDPSwapComponent() { function TDPSwapComponent() {
const { address, currency, currencyChainId, warning } = useTDPContext() const { address, currency, currencyChainId, warning } = useTDPContext()
const account = useAccount()
const navigate = useNavigate() const navigate = useNavigate()
const handleCurrencyChange = useCallback( const handleCurrencyChange = useCallback(
...@@ -134,7 +132,6 @@ function TDPSwapComponent() { ...@@ -134,7 +132,6 @@ function TDPSwapComponent() {
initialInputCurrency={initialInputCurrency} initialInputCurrency={initialInputCurrency}
initialOutputCurrency={currency} initialOutputCurrency={currency}
onCurrencyChange={handleCurrencyChange} onCurrencyChange={handleCurrencyChange}
disableTokenInputs={account.isConnected && currency.chainId !== account.chainId}
compact compact
/> />
{warning && <TokenSafetyMessage tokenAddress={address} warning={warning} />} {warning && <TokenSafetyMessage tokenAddress={address} warning={warning} />}
......
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