Skip to content

Commit

Permalink
fix: replace faulty import
Browse files Browse the repository at this point in the history
  • Loading branch information
DiogoSoaress committed Nov 26, 2024
1 parent 5c4fabf commit ab6db7b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/components/Safenet/Roadmap/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import { Button, Container, Grid, IconButton, Typography } from '@mui/material'
import GradientChip from '@/components/Safenet/GradientChip'
import { ALPHA_TELEGRAM_LINK } from '@/config/constants'
import TelegramGradient from '@/public/images/Safenet/telegram-gradient.svg'
import css from './styles.module.css'

Expand Down Expand Up @@ -56,7 +55,7 @@ const Roadmap = () => {
</Grid>

<div className={css.buttonWrapper}>
<IconButton href={ALPHA_TELEGRAM_LINK} target="_blank" rel="noreferrer">
<IconButton href="https://dub.sh/safealpha" target="_blank" rel="noreferrer">
<TelegramGradient />
</IconButton>

Expand All @@ -65,7 +64,7 @@ const Roadmap = () => {
<Button
variant="contained"
size="large"
href={ALPHA_TELEGRAM_LINK}
href="https://dub.sh/safealpha"
target="_blank"
rel="noreferrer"
className={css.gradientButton}
Expand Down

0 comments on commit ab6db7b

Please sign in to comment.