Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bugfix release #157

Merged
merged 19 commits into from
Apr 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/components/Activities/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -60,13 +60,13 @@ const Activities = () => {
<Typography width="80%" textAlign="center">
With{' '}
<Typography fontWeight="bold" display="inline">
{'Safe {Pass}'}
{'Safe{Pass}'}
</Typography>{' '}
you can earn Points by using your Safe Account. Some activities are rewarded throughout the entire season,
you can earn points by using your Safe Account. Some activities are rewarded throughout the entire season,
some activities are only rewarded temporarily.
</Typography>

<ExternalLink href={SAFE_PASS_LANDING_PAGE}>Learn more about {'Safe {Pass}'}</ExternalLink>
<ExternalLink href={SAFE_PASS_LANDING_PAGE}>Learn more about {'Safe{Pass}'}</ExternalLink>

<Box display="flex" flexWrap="wrap" justifyContent="center">
<ActivityItem
Expand Down Expand Up @@ -104,7 +104,7 @@ const Activities = () => {
description={
<>
To stay updated{' '}
<ExternalLink icon={false} href="https://twitter.com/safe">
<ExternalLink icon={false} href="https://twitter.com/intent/user?screen_name=safe">
follow us on X
</ExternalLink>{' '}
and{' '}
Expand Down
2 changes: 1 addition & 1 deletion src/components/Claim/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,7 @@ const ClaimOverview = (): ReactElement => {
fullWidth
value={amount}
error={!!amountError}
helperText={amountError}
helperText={amountError ?? ' '}
onChange={onChangeAmount}
InputProps={{
startAdornment: (
Expand Down
Loading