ci(release): publish latest release

parent 98e2fa58
IPFS hash of the deployment: IPFS hash of the deployment:
- CIDv0: `QmNqPGKMdePE3CHXYcsFP4iUhi4CqDxj5UPy9WS24aiPri` - CIDv0: `QmNseCQM3gjdY5cnH16fzEDwnaik9pnuLDaAXAWbET2gef`
- CIDv1: `bafybeiahlrqvc2774o2m52oaqpupr2wb6ycrv2p4y65lf27etmvjsbegom` - CIDv1: `bafybeiah6bwq7dezzdlgk22o5nbiel2t73ev5tpo75mqebz5f4p5dw5v5q`
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://bafybeiahlrqvc2774o2m52oaqpupr2wb6ycrv2p4y65lf27etmvjsbegom.ipfs.dweb.link/ - https://bafybeiah6bwq7dezzdlgk22o5nbiel2t73ev5tpo75mqebz5f4p5dw5v5q.ipfs.dweb.link/
- https://bafybeiahlrqvc2774o2m52oaqpupr2wb6ycrv2p4y65lf27etmvjsbegom.ipfs.cf-ipfs.com/ - https://bafybeiah6bwq7dezzdlgk22o5nbiel2t73ev5tpo75mqebz5f4p5dw5v5q.ipfs.cf-ipfs.com/
- [ipfs://QmNqPGKMdePE3CHXYcsFP4iUhi4CqDxj5UPy9WS24aiPri/](ipfs://QmNqPGKMdePE3CHXYcsFP4iUhi4CqDxj5UPy9WS24aiPri/) - [ipfs://QmNseCQM3gjdY5cnH16fzEDwnaik9pnuLDaAXAWbET2gef/](ipfs://QmNseCQM3gjdY5cnH16fzEDwnaik9pnuLDaAXAWbET2gef/)
### 5.45.2 (2024-09-05) ### 5.45.3 (2024-09-05)
### Bug Fixes ### Bug Fixes
* **web:** stop crash on search - prod (#11568) 12d0927 * **web:** filter sugessstions if chain is undefined (#11572) f71048d
web/5.45.2 web/5.45.3
\ No newline at end of file \ No newline at end of file
...@@ -26,7 +26,11 @@ import { useLocation } from 'react-router-dom' ...@@ -26,7 +26,11 @@ import { useLocation } from 'react-router-dom'
import { ThemedText } from 'theme/components' import { ThemedText } from 'theme/components'
import { Flex } from 'ui/src' import { Flex } from 'ui/src'
import { UNIVERSE_CHAIN_INFO } from 'uniswap/src/constants/chains' import { UNIVERSE_CHAIN_INFO } from 'uniswap/src/constants/chains'
import { HistoryDuration, SafetyLevel } from 'uniswap/src/data/graphql/uniswap-data-api/__generated__/types-and-hooks' import {
HistoryDuration,
SafetyLevel,
Token,
} from 'uniswap/src/data/graphql/uniswap-data-api/__generated__/types-and-hooks'
import { InterfaceSearchResultSelectionProperties } from 'uniswap/src/features/telemetry/types' import { InterfaceSearchResultSelectionProperties } from 'uniswap/src/features/telemetry/types'
import { Trans } from 'uniswap/src/i18n' import { Trans } from 'uniswap/src/i18n'
import { InterfaceChainId } from 'uniswap/src/types/chains' import { InterfaceChainId } from 'uniswap/src/types/chains'
...@@ -171,7 +175,13 @@ function SearchBarDropdownContents({ ...@@ -171,7 +175,13 @@ function SearchBarDropdownContents({
}: SearchBarDropdownProps): JSX.Element { }: SearchBarDropdownProps): JSX.Element {
const [hoveredIndex, setHoveredIndex] = useState<number | undefined>(0) const [hoveredIndex, setHoveredIndex] = useState<number | undefined>(0)
const { data: searchHistory } = useRecentlySearchedAssets() const { data: searchHistory } = useRecentlySearchedAssets()
const shortenedHistory = useMemo(() => searchHistory ?? [...Array<GqlSearchToken>(2)], [searchHistory]) const shortenedHistory = useMemo(
() =>
searchHistory?.filter((item) => 'isVerified' in (item as GenieCollection) || (item as Token).chain) ?? [
...Array<GqlSearchToken>(2),
],
[searchHistory],
)
const { pathname } = useLocation() const { pathname } = useLocation()
const isNFTPage = useIsNftPage() const isNFTPage = useIsNftPage()
const isTokenPage = pathname.includes('/explore') const isTokenPage = pathname.includes('/explore')
......
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