From 508b83ffe2a2541a4bd279110f2fb157f557ae1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A1udio=20Silva?= Date: Thu, 8 Aug 2024 10:23:40 -0300 Subject: [PATCH] fix: Replace Discord thread by the new Telegram group --- frontend/src/app/notification/page.tsx | 6 +++--- frontend/src/utils/links.tsx | 3 +-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/frontend/src/app/notification/page.tsx b/frontend/src/app/notification/page.tsx index 5a55957..b5bb591 100644 --- a/frontend/src/app/notification/page.tsx +++ b/frontend/src/app/notification/page.tsx @@ -1,6 +1,6 @@ import { Anchor, Group, Stack, Text, Title } from "@mantine/core"; import { FC } from "react"; -import { DISCORD_CHANNEL_URL, X_ACCOUNT_URL } from "../../utils/links"; +import { TELEGRAM_CHANNEL_URL, X_ACCOUNT_URL } from "../../utils/links"; const WordsOfCaution: FC = () => { return ( @@ -35,8 +35,8 @@ const WordsOfCaution: FC = () => { Feel free to explore, ask questions, and provide feedback on our{" "} - - Discord channel + + Telegram group {" "} or message us on our{" "} diff --git a/frontend/src/utils/links.tsx b/frontend/src/utils/links.tsx index 43245f2..617e38c 100644 --- a/frontend/src/utils/links.tsx +++ b/frontend/src/utils/links.tsx @@ -1,8 +1,7 @@ export const GH_REPO_URL = "https://github.com/crypto-bug-hunters/bug-buster"; export const GH_MAIN_BRANCH = "main"; export const GH_README_URL = `${GH_REPO_URL}/blob/${GH_MAIN_BRANCH}/README.md`; -export const DISCORD_CHANNEL_URL = - "https://discord.com/channels/600597137524391947/1166042819782258788"; +export const TELEGRAM_CHANNEL_URL = "https://t.me/+G_CPMEhCHC04MzA5"; export const X_ACCOUNT_URL = "https://x.com/BugBusterApp"; export const GOOGLE_BOUNTY_CREATION_FORM_URL = "https://forms.gle/h4EePFXG41Zwv48a7";