Skip to content

Commit

Permalink
fix: restore Telegram link
Browse files Browse the repository at this point in the history
  • Loading branch information
DiogoSoaress committed Nov 18, 2024
1 parent 2388ad3 commit f81ae98
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Teaser/Video/index.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { useEffect, useRef, useState, type ReactElement } from 'react'
import { ButtonBase } from '@mui/material'
import { ALPHA_TELEGRAM_LINK } from '@/config/constants'
import { SAFENET_TELEGRAM_LINK } from '@/config/constants'
import LoadingLogo from '@/public/images/Teaser/loading.svg'
import css from './styles.module.css'

Expand Down Expand Up @@ -62,7 +62,7 @@ const Video = (): ReactElement => {

{ready ? (
<div className={`${css.imageWrapper} ${showButton ? css.visible : ''}`}>
<ButtonBase target="_blank" rel="noreferrer" href={ALPHA_TELEGRAM_LINK} className={css.button}>
<ButtonBase target="_blank" rel="noreferrer" href={SAFENET_TELEGRAM_LINK} className={css.button}>
<img src="/images/Teaser/telegram.svg" alt="Telegram" className={css.image} />
</ButtonBase>
</div>
Expand Down
1 change: 1 addition & 0 deletions src/config/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ export const YOUTUBE_LINK = 'https://www.youtube.com/@safeglobal'
export const MIRROR_LINK = 'https://safe.mirror.xyz'
export const MIRROR_SUBSCRIBE_LINK = 'https://safe.mirror.xyz/subscribe/embed'
export const GITHUB_LINK = 'https://github.com/safe-global'
export const SAFENET_TELEGRAM_LINK = 'https://dub.sh/safealpha'

export const PROTOCOL_KIT_LINK = 'https://docs.safe.global/safe-core-aa-sdk/protocol-kit'
export const AUTH_KIT_LINK = 'https://docs.safe.global/safe-core-aa-sdk/auth-kit'
Expand Down

0 comments on commit f81ae98

Please sign in to comment.