Skip to content

Commit

Permalink
[ECO-2426] Remove Telegram references (#363)
Browse files Browse the repository at this point in the history
  • Loading branch information
CRBl69 authored Nov 18, 2024
1 parent 6e647a6 commit 4008e2e
Show file tree
Hide file tree
Showing 6 changed files with 0 additions and 44 deletions.
1 change: 0 additions & 1 deletion src/typescript/example.env
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ NEXT_PUBLIC_LINKS='{
"x": "",
"github": "",
"discord": "",
"telegram": "",
"tos": ""
}'

Expand Down
2 changes: 0 additions & 2 deletions src/typescript/frontend/src/components/footer/constants.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import Discord from "@icons/Discord";
import Telegram from "@icons/Telegram";
import Twitter from "components/svg/icons/Twitter";
import { LINKS } from "lib/env";
import { ROUTES } from "router/routes";

export const SOCIAL_ICONS = [
{ icon: Discord, href: LINKS?.discord ?? ROUTES.notFound },
{ icon: Telegram, href: LINKS?.telegram ?? ROUTES.notFound },
{ icon: Twitter, href: LINKS?.x ?? ROUTES.notFound },
];
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import TwitterOutlineIcon from "components/svg/icons/TwitterOutlineIcon";
import { LINKS } from "lib/env";
import DiscordOutlineIcon from "@icons/DiscordOutlineIcon";
import TelegramOutlineIcon from "@icons/TelegramOutlineIcon";
import { ROUTES } from "router/routes";

export const SOCIAL_ICONS = [
{ icon: DiscordOutlineIcon, href: LINKS?.discord ?? ROUTES.notFound },
{ icon: TelegramOutlineIcon, href: LINKS?.telegram ?? ROUTES.notFound },
{ icon: TwitterOutlineIcon, href: LINKS?.x ?? ROUTES.notFound },
];
19 changes: 0 additions & 19 deletions src/typescript/frontend/src/components/svg/icons/Telegram.tsx

This file was deleted.

This file was deleted.

1 change: 0 additions & 1 deletion src/typescript/frontend/src/lib/env.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ export type Links = {
x: string;
github: string;
discord: string;
telegram: string;
tos: string;
};

Expand Down

0 comments on commit 4008e2e

Please sign in to comment.