Skip to content

Commit 28e16ef

Browse files
author
Manuel Gellfart
authored
Release 2.0.2 (#160)
2 parents 82ffaea + 0f7d00e commit 28e16ef

File tree

3 files changed

+19
-9
lines changed

3 files changed

+19
-9
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "safe-dao-governance-app",
33
"homepage": "https://github.com/safe-global/safe-dao-governance-app",
44
"license": "GPL-3.0",
5-
"version": "2.0.0",
5+
"version": "2.0.2",
66
"scripts": {
77
"build": "next build && next export",
88
"lint": "tsc && next lint",

src/components/TokenLocking/index.tsx

Lines changed: 17 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -42,28 +42,38 @@ const TokenLocking = () => {
4242
safeBalance={safeBalance ?? 0}
4343
/>
4444
</PaperContainer>
45-
4645
<PaperContainer>
4746
<LockTokenWidget safeBalance={safeBalance} />
4847
<ActionNavigation disabled={!isUnlockAvailable} />
4948
</PaperContainer>
5049
<PaperContainer>
5150
<Leaderboard />
5251
</PaperContainer>
53-
<Box>
52+
<Box px={{ xs: 4, md: 0 }}>
5453
<Typography variant="overline" fontWeight="bold" color="text.secondary">
5554
LEGAL DISCLAIMER
5655
</Typography>
5756
<Typography variant="body2" color="text.secondary" sx={{ mt: 1 }}>
5857
Please note that residents in{' '}
5958
<ExternalLink href={SAFE_TERMS_AND_CONDITIONS_URL}>certain jurisdictions</ExternalLink> (including the
60-
United States) may not be eligible for the boost and reward. This means that your boost might not be
61-
applied to certain reward types, e.g. token rewards such as Safe.
59+
United States) may not be eligible for the boost and rewards. This means that your boost might not be
60+
applied to certain reward types, e.g. token rewards such as Safe, and you might not be eligible to receive
61+
certain types of rewards.
62+
<br />
63+
PLEASE NOTE THAT SOLELY LOCKING YOUR SAFE TOKEN WITHOUT ACTIVELY PARTICIPATING IN ACTIVITIES DOES NOT
64+
QUALIFY YOU TO RECEIVE REWARDS.
65+
<br />
66+
<b>
67+
Please note that participating in the Safe{'{'}Pass{'}'} Program, collecting points and completing
68+
activities{' '}
69+
</b>
70+
DOES NOT GRANT YOU ANY CLAIM, CONTRACTUAL OR OTHERWISE, TO RECEIVE REWARDS.
6271
</Typography>
6372
</Box>
64-
<ExternalLink href={SAFE_TERMS_AND_CONDITIONS_URL} m={2}>
65-
Terms and Conditions
66-
</ExternalLink>
73+
<Typography variant="body2" color="text.secondary" px={{ xs: 4, md: 0 }}>
74+
For more information, see{' '}
75+
<ExternalLink href={SAFE_TERMS_AND_CONDITIONS_URL}>Terms and Conditions</ExternalLink>
76+
</Typography>
6777
</Stack>
6878
</Grid>
6979
</Grid>

src/utils/onboard.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export const createOnboard = (chainConfigs: ChainInfo[], currentChain: ChainInfo
5858
},
5959
appMetadata: {
6060
name: manifestJson.name,
61-
icon: '/images/app-logo.svg',
61+
icon: location.origin + '/images/app-logo.svg',
6262
description: `Please select a wallet to connect to ${manifestJson.name}`,
6363
},
6464
connect: {

0 commit comments

Comments
 (0)