Skip to content

Commit 98e2fa5

Browse files
ci(release): publish latest release
1 parent 6f9d013 commit 98e2fa5

File tree

4 files changed

+13
-11
lines changed

4 files changed

+13
-11
lines changed

RELEASE

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `QmPJsdrofYQ6SUV8zDEMh75V6DNdCX7DYH7jVEenjuPJEN`
3-
- CIDv1: `bafybeiaom4sehmbhmxryop6mzvfhw7j5fgmv47kmju43hjcyi6rfr2tqdm`
2+
- CIDv0: `QmNqPGKMdePE3CHXYcsFP4iUhi4CqDxj5UPy9WS24aiPri`
3+
- CIDv1: `bafybeiahlrqvc2774o2m52oaqpupr2wb6ycrv2p4y65lf27etmvjsbegom`
44

55
The latest release is always mirrored at [app.uniswap.org](https://app.uniswap.org).
66

@@ -10,15 +10,15 @@ You can also access the Uniswap Interface from an IPFS gateway.
1010
Your Uniswap settings are never remembered across different URLs.
1111

1212
IPFS gateways:
13-
- https://bafybeiaom4sehmbhmxryop6mzvfhw7j5fgmv47kmju43hjcyi6rfr2tqdm.ipfs.dweb.link/
14-
- https://bafybeiaom4sehmbhmxryop6mzvfhw7j5fgmv47kmju43hjcyi6rfr2tqdm.ipfs.cf-ipfs.com/
15-
- [ipfs://QmPJsdrofYQ6SUV8zDEMh75V6DNdCX7DYH7jVEenjuPJEN/](ipfs://QmPJsdrofYQ6SUV8zDEMh75V6DNdCX7DYH7jVEenjuPJEN/)
13+
- https://bafybeiahlrqvc2774o2m52oaqpupr2wb6ycrv2p4y65lf27etmvjsbegom.ipfs.dweb.link/
14+
- https://bafybeiahlrqvc2774o2m52oaqpupr2wb6ycrv2p4y65lf27etmvjsbegom.ipfs.cf-ipfs.com/
15+
- [ipfs://QmNqPGKMdePE3CHXYcsFP4iUhi4CqDxj5UPy9WS24aiPri/](ipfs://QmNqPGKMdePE3CHXYcsFP4iUhi4CqDxj5UPy9WS24aiPri/)
1616

17-
### 5.45.1 (2024-09-04)
17+
### 5.45.2 (2024-09-05)
1818

1919

2020
### Bug Fixes
2121

22-
* **web:** Show all tabs when multichain_explore is disabled - prod (#11534) d9ec7de
22+
* **web:** stop crash on search - prod (#11568) 12d0927
2323

2424

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web/5.45.1
1+
web/5.45.2

apps/web/src/components/Logo/QueryTokenLogo.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ export default function QueryTokenLogo(
1616
token?: TopToken | TokenQueryData | GqlSearchToken | TokenStat
1717
},
1818
) {
19-
const chain = getChainFromChainUrlParam(props.token?.chain.toLowerCase())
19+
const chain = getChainFromChainUrlParam(props.token?.chain?.toLowerCase())
2020
const chainId = chain?.id ?? UniverseChainId.Mainnet
2121
const isNative = props.token?.address === NATIVE_CHAIN_ID
2222
const isTokenStat = !!props.token && 'volume' in props.token

apps/web/src/components/NavBar/SearchBar/SuggestionRow.tsx

+4-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { Link, useNavigate } from 'react-router-dom'
1717
import { EllipsisStyle, ThemedText } from 'theme/components'
1818
import { Flex } from 'ui/src'
1919
import { Verified } from 'ui/src/components/icons/Verified'
20-
import { TokenStandard } from 'uniswap/src/data/graphql/uniswap-data-api/__generated__/types-and-hooks'
20+
import { Chain, TokenStandard } from 'uniswap/src/data/graphql/uniswap-data-api/__generated__/types-and-hooks'
2121
import { addToSearchHistory } from 'uniswap/src/features/search/searchHistorySlice'
2222
import { sendAnalyticsEvent } from 'uniswap/src/features/telemetry/send'
2323
import { InterfaceSearchResultSelectionProperties } from 'uniswap/src/features/telemetry/types'
@@ -131,7 +131,9 @@ export function SuggestionRow({
131131
sendAnalyticsEvent(InterfaceEventName.NAVBAR_RESULT_SELECTED, { ...eventProperties })
132132
}, [suggestion, isToken, toggleOpen, eventProperties, dispatch])
133133

134-
const path = isToken ? getTokenDetailsURL({ ...suggestion }) : `/nfts/collection/${suggestion.address}`
134+
const path = isToken
135+
? getTokenDetailsURL({ ...suggestion, chain: suggestion.chain ?? Chain.Ethereum })
136+
: `/nfts/collection/${suggestion.address}`
135137
// Close the modal on escape
136138
useEffect(() => {
137139
const keyDownHandler = (event: KeyboardEvent) => {

0 commit comments

Comments
 (0)