Skip to content

Commit 7887825

Browse files
ci(release): publish latest release
1 parent 73d2409 commit 7887825

File tree

4 files changed

+21
-9
lines changed

4 files changed

+21
-9
lines changed

RELEASE

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `QmNsXxX15TxdeUMfUCn7T2u9hivdRZ6Ar46j1wnGDg1yPH`
3-
- CIDv1: `bafybeiah5fpqbrntgbxd66esq6mokpd4mpfcuqgy3y2uvwxhyzpk36rsdq`
2+
- CIDv0: `QmSC1sbHxyqCDMoenbyRbNy3ng8pRFXA1t1WiU8ufuAew5`
3+
- CIDv1: `bafybeibzhbztvwsi7k2x3mwg44ixqk6awd5jpzzawc4h4mkbbcwng76slq`
44

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

@@ -10,14 +10,14 @@ 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://bafybeiah5fpqbrntgbxd66esq6mokpd4mpfcuqgy3y2uvwxhyzpk36rsdq.ipfs.dweb.link/
14-
- [ipfs://QmNsXxX15TxdeUMfUCn7T2u9hivdRZ6Ar46j1wnGDg1yPH/](ipfs://QmNsXxX15TxdeUMfUCn7T2u9hivdRZ6Ar46j1wnGDg1yPH/)
13+
- https://bafybeibzhbztvwsi7k2x3mwg44ixqk6awd5jpzzawc4h4mkbbcwng76slq.ipfs.dweb.link/
14+
- [ipfs://QmSC1sbHxyqCDMoenbyRbNy3ng8pRFXA1t1WiU8ufuAew5/](ipfs://QmSC1sbHxyqCDMoenbyRbNy3ng8pRFXA1t1WiU8ufuAew5/)
1515

16-
### 5.120.4 (2025-12-03)
16+
### 5.120.5 (2025-12-03)
1717

1818

1919
### Bug Fixes
2020

21-
* **web:** enable correct tamagui stacking zIndex mode (#26002) b2f3041
21+
* **web:** zindex/hover fixes for navbar (#26024) 1153033
2222

2323

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
web/5.120.4
1+
web/5.120.5

apps/web/src/components/NavBar/NavDropdown/NavDropdown.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { ReactNode, RefObject } from 'react'
22
import { Flex, FlexProps, Popover, styled, useScrollbarStyles, useShadowPropsMedium, WebBottomSheet } from 'ui/src'
3-
import { INTERFACE_NAV_HEIGHT } from 'ui/src/theme'
3+
import { INTERFACE_NAV_HEIGHT, zIndexes } from 'ui/src/theme'
44

55
const NavDropdownContent = styled(Flex, {
66
borderRadius: '$rounded16',
@@ -61,6 +61,7 @@ export function NavDropdown({
6161
return (
6262
<>
6363
<Popover.Content
64+
zIndex={zIndexes.popover}
6465
backgroundColor="transparent"
6566
enterStyle={{ scale: 0.95, opacity: 0 }}
6667
exitStyle={{ scale: 0.95, opacity: 0 }}

apps/web/src/components/NavBar/Tabs/Tabs.tsx

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,18 @@ const Tab = ({
109109
}
110110

111111
return (
112-
<Popover ref={popoverRef} placement="bottom" hoverable stayInFrame allowFlip onOpenChange={setIsOpen}>
112+
<Popover
113+
ref={popoverRef}
114+
placement="bottom"
115+
hoverable={{
116+
delay: { open: 75, close: 150 },
117+
restMs: 50,
118+
move: true,
119+
}}
120+
stayInFrame
121+
allowFlip
122+
onOpenChange={setIsOpen}
123+
>
113124
<Popover.Trigger data-testid={`${label}-tab`}>{Label}</Popover.Trigger>
114125
<NavDropdown isOpen={isOpen} dataTestId={`${label}-menu`}>
115126
<NavDropdownTabWrapper>

0 commit comments

Comments
 (0)