ci(release): publish latest release

parent 9219c553
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `QmUWi3jNeMPBZR4GdHMAGfraizcdpB2szAaPdqRpnEZFSw` - CIDv0: `QmRUQggwPRvjCrAusfxoEh4X2CNdUX8UTNvJD386JDbwZG`
- CIDv1: `bafybeic3xg2e7qmaibklwkbb7ahlubktigmllrc2ucaxtn4xwsflp3idra` - CIDv1: `bafybeibor7myvk5yzfdx7k3orreuxitxtseyd2zh5zaaqczjo5i4gmyrk4`
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://bafybeic3xg2e7qmaibklwkbb7ahlubktigmllrc2ucaxtn4xwsflp3idra.ipfs.dweb.link/ - https://bafybeibor7myvk5yzfdx7k3orreuxitxtseyd2zh5zaaqczjo5i4gmyrk4.ipfs.dweb.link/
- https://bafybeic3xg2e7qmaibklwkbb7ahlubktigmllrc2ucaxtn4xwsflp3idra.ipfs.cf-ipfs.com/ - https://bafybeibor7myvk5yzfdx7k3orreuxitxtseyd2zh5zaaqczjo5i4gmyrk4.ipfs.cf-ipfs.com/
- [ipfs://QmUWi3jNeMPBZR4GdHMAGfraizcdpB2szAaPdqRpnEZFSw/](ipfs://QmUWi3jNeMPBZR4GdHMAGfraizcdpB2szAaPdqRpnEZFSw/) - [ipfs://QmRUQggwPRvjCrAusfxoEh4X2CNdUX8UTNvJD386JDbwZG/](ipfs://QmRUQggwPRvjCrAusfxoEh4X2CNdUX8UTNvJD386JDbwZG/)
### 5.23.1 (2024-04-10) ### 5.23.2 (2024-04-11)
### Bug Fixes
* **web:** TokenBalanceProvider account change [prod] (#7433) ae7d54b
web/5.23.1 web/5.23.2
\ No newline at end of file \ No newline at end of file
...@@ -64,10 +64,10 @@ function useHasAccountUpdate() { ...@@ -64,10 +64,10 @@ function useHasAccountUpdate() {
const isRealtime = useIsRealtime() const isRealtime = useIsRealtime()
const { data, variables } = useAssetActivitySubscription() const { data } = useAssetActivitySubscription()
const prevData = usePrevious(data) const prevData = usePrevious(data)
const { account } = variables ?? {} const { account } = useWeb3React()
const prevAccount = usePrevious(account) const prevAccount = usePrevious(account)
return useMemo(() => { return useMemo(() => {
......
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