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

fix: Replace Discord thread by the new Telegram group #127

Merged
merged 1 commit into from
Aug 8, 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
6 changes: 3 additions & 3 deletions frontend/src/app/notification/page.tsx
Original file line number Diff line number Diff line change
@@ -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 (
Expand Down Expand Up @@ -35,8 +35,8 @@ const WordsOfCaution: FC = () => {
<Text>
Feel free to explore, ask questions, and provide feedback on
our{" "}
<Anchor href={DISCORD_CHANNEL_URL} underline="never">
Discord channel
<Anchor href={TELEGRAM_CHANNEL_URL} underline="never">
Telegram group
</Anchor>{" "}
or message us on our{" "}
<Anchor href={X_ACCOUNT_URL} underline="never">
Expand Down
3 changes: 1 addition & 2 deletions frontend/src/utils/links.tsx
Original file line number Diff line number Diff line change
@@ -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";