Skip to content

Commit f230d55

Browse files
ci(release): publish latest release
1 parent 3d23c2e commit f230d55

File tree

4 files changed

+15
-14
lines changed

4 files changed

+15
-14
lines changed

RELEASE

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
IPFS hash of the deployment:
2-
- CIDv0: `QmdbU9rZkWxKta3MZBfefXEr93qjHYPYvB1C5dr8ndr4dR`
3-
- CIDv1: `bafybeihcvmkix5keffnjvlvhfy2vse7m73mkqxorpupokxoqjh55wd426q`
2+
- CIDv0: `QmdhNVNTTE8WpUyhrkdiNQz5rLkUF7wyDC8sJ9aA1yDQtu`
3+
- CIDv1: `bafybeihefyuu3tgh7s3zrkveulspuate3kjfrqoler2mmqvefxldfnmudy`
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://bafybeihcvmkix5keffnjvlvhfy2vse7m73mkqxorpupokxoqjh55wd426q.ipfs.dweb.link/
14-
- https://bafybeihcvmkix5keffnjvlvhfy2vse7m73mkqxorpupokxoqjh55wd426q.ipfs.cf-ipfs.com/
15-
- [ipfs://QmdbU9rZkWxKta3MZBfefXEr93qjHYPYvB1C5dr8ndr4dR/](ipfs://QmdbU9rZkWxKta3MZBfefXEr93qjHYPYvB1C5dr8ndr4dR/)
13+
- https://bafybeihefyuu3tgh7s3zrkveulspuate3kjfrqoler2mmqvefxldfnmudy.ipfs.dweb.link/
14+
- https://bafybeihefyuu3tgh7s3zrkveulspuate3kjfrqoler2mmqvefxldfnmudy.ipfs.cf-ipfs.com/
15+
- [ipfs://QmdhNVNTTE8WpUyhrkdiNQz5rLkUF7wyDC8sJ9aA1yDQtu/](ipfs://QmdhNVNTTE8WpUyhrkdiNQz5rLkUF7wyDC8sJ9aA1yDQtu/)
1616

17-
### 5.44.3 (2024-08-30)
17+
### 5.44.4 (2024-08-30)
1818

1919

2020
### Bug Fixes
2121

22-
* **web:** add link to vote - prod (#11424) 6c154d5
22+
* **web:** realign explore charts - prod (#11421) a5cfafa
2323

2424

VERSION

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

apps/web/src/components/Charts/TimeSelector.tsx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,10 @@ const DEFAULT_TIME_SELECTOR_OPTIONS = ORDERED_TIMES.map((time: TimePeriod) => ({
99

1010
const TimeOptionsContainer = styled(Flex, {
1111
justifyContent: 'flex-end',
12-
mt: '$spacing4',
1312
gap: '$gap4',
1413
borderRadius: '$rounded16',
15-
height: 40,
16-
p: '$spacing4',
14+
height: 24,
15+
px: '$spacing4',
1716
width: 'fit-content',
1817
overflow: 'visible',
1918
$md: {

apps/web/src/pages/Explore/charts/ExploreChartsSection.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ const SectionTitle = styled(Text, {
6363
name: 'SectionTitle',
6464
fontWeight: '300',
6565
whiteSpace: 'nowrap',
66+
color: '$neutral2',
67+
lineHeight: 24,
6668
})
6769

6870
function VolumeChartSection({ chainId }: { chainId: SupportedInterfaceChainId }) {
@@ -112,7 +114,7 @@ function VolumeChartSection({ chainId }: { chainId: SupportedInterfaceChainId })
112114

113115
return (
114116
<SectionContainer>
115-
<Flex row justifyContent="space-between" alignItems="center">
117+
<Flex row justifyContent="space-between" alignItems="center" mb="$spacing8">
116118
<SectionTitle>
117119
<Trans i18nKey="explore.uniVolume" />
118120
</SectionTitle>
@@ -167,7 +169,7 @@ function TVLChartSection({ chainId }: { chainId: SupportedInterfaceChainId }) {
167169

168170
return (
169171
<SectionContainer>
170-
<SectionTitle color="$neutral2">
172+
<SectionTitle color="$neutral2" mb="$spacing8">
171173
<Trans i18nKey="common.uniswapTVL" />
172174
</SectionTitle>
173175
{(() => {
@@ -200,7 +202,7 @@ function MinimalStatDisplay({ title, value, time }: { title: ReactNode; value: n
200202

201203
return (
202204
<SectionContainer>
203-
<SectionTitle color="$neutral2">{title}</SectionTitle>
205+
<SectionTitle>{title}</SectionTitle>
204206
<Text variant="heading3">{formatFiatPrice({ price: value, type: NumberType.ChartFiatValue })}</Text>
205207
{time && (
206208
<Text variant="body4" fontWeight="200" color="$neutral2">

0 commit comments

Comments
 (0)