Skip to content

Commit

Permalink
ci(release): publish latest release
Browse files Browse the repository at this point in the history
  • Loading branch information
hello-happy-puppy committed Sep 5, 2024
1 parent 6f9d013 commit 98e2fa5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
14 changes: 7 additions & 7 deletions RELEASE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
IPFS hash of the deployment:
- CIDv0: `QmPJsdrofYQ6SUV8zDEMh75V6DNdCX7DYH7jVEenjuPJEN`
- CIDv1: `bafybeiaom4sehmbhmxryop6mzvfhw7j5fgmv47kmju43hjcyi6rfr2tqdm`
- CIDv0: `QmNqPGKMdePE3CHXYcsFP4iUhi4CqDxj5UPy9WS24aiPri`
- CIDv1: `bafybeiahlrqvc2774o2m52oaqpupr2wb6ycrv2p4y65lf27etmvjsbegom`

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

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

IPFS gateways:
- https://bafybeiaom4sehmbhmxryop6mzvfhw7j5fgmv47kmju43hjcyi6rfr2tqdm.ipfs.dweb.link/
- https://bafybeiaom4sehmbhmxryop6mzvfhw7j5fgmv47kmju43hjcyi6rfr2tqdm.ipfs.cf-ipfs.com/
- [ipfs://QmPJsdrofYQ6SUV8zDEMh75V6DNdCX7DYH7jVEenjuPJEN/](ipfs://QmPJsdrofYQ6SUV8zDEMh75V6DNdCX7DYH7jVEenjuPJEN/)
- https://bafybeiahlrqvc2774o2m52oaqpupr2wb6ycrv2p4y65lf27etmvjsbegom.ipfs.dweb.link/
- https://bafybeiahlrqvc2774o2m52oaqpupr2wb6ycrv2p4y65lf27etmvjsbegom.ipfs.cf-ipfs.com/
- [ipfs://QmNqPGKMdePE3CHXYcsFP4iUhi4CqDxj5UPy9WS24aiPri/](ipfs://QmNqPGKMdePE3CHXYcsFP4iUhi4CqDxj5UPy9WS24aiPri/)

### 5.45.1 (2024-09-04)
### 5.45.2 (2024-09-05)


### Bug Fixes

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


2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
web/5.45.1
web/5.45.2
2 changes: 1 addition & 1 deletion apps/web/src/components/Logo/QueryTokenLogo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export default function QueryTokenLogo(
token?: TopToken | TokenQueryData | GqlSearchToken | TokenStat
},
) {
const chain = getChainFromChainUrlParam(props.token?.chain.toLowerCase())
const chain = getChainFromChainUrlParam(props.token?.chain?.toLowerCase())
const chainId = chain?.id ?? UniverseChainId.Mainnet
const isNative = props.token?.address === NATIVE_CHAIN_ID
const isTokenStat = !!props.token && 'volume' in props.token
Expand Down
6 changes: 4 additions & 2 deletions apps/web/src/components/NavBar/SearchBar/SuggestionRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import { Link, useNavigate } from 'react-router-dom'
import { EllipsisStyle, ThemedText } from 'theme/components'
import { Flex } from 'ui/src'
import { Verified } from 'ui/src/components/icons/Verified'
import { TokenStandard } from 'uniswap/src/data/graphql/uniswap-data-api/__generated__/types-and-hooks'
import { Chain, TokenStandard } from 'uniswap/src/data/graphql/uniswap-data-api/__generated__/types-and-hooks'
import { addToSearchHistory } from 'uniswap/src/features/search/searchHistorySlice'
import { sendAnalyticsEvent } from 'uniswap/src/features/telemetry/send'
import { InterfaceSearchResultSelectionProperties } from 'uniswap/src/features/telemetry/types'
Expand Down Expand Up @@ -131,7 +131,9 @@ export function SuggestionRow({
sendAnalyticsEvent(InterfaceEventName.NAVBAR_RESULT_SELECTED, { ...eventProperties })
}, [suggestion, isToken, toggleOpen, eventProperties, dispatch])

const path = isToken ? getTokenDetailsURL({ ...suggestion }) : `/nfts/collection/${suggestion.address}`
const path = isToken
? getTokenDetailsURL({ ...suggestion, chain: suggestion.chain ?? Chain.Ethereum })
: `/nfts/collection/${suggestion.address}`
// Close the modal on escape
useEffect(() => {
const keyDownHandler = (event: KeyboardEvent) => {
Expand Down

0 comments on commit 98e2fa5

Please sign in to comment.