-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ECO-2426] Remove Telegram references (#363)
- Loading branch information
Showing
6 changed files
with
0 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -28,7 +28,6 @@ NEXT_PUBLIC_LINKS='{ | |
"x": "", | ||
"github": "", | ||
"discord": "", | ||
"telegram": "", | ||
"tos": "" | ||
}' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }, | ||
]; |
2 changes: 0 additions & 2 deletions
2
...src/components/header/components/mobile-menu/components/mobile-social-links/constants.tsx
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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
19
src/typescript/frontend/src/components/svg/icons/Telegram.tsx
This file was deleted.
Oops, something went wrong.
19 changes: 0 additions & 19 deletions
19
src/typescript/frontend/src/components/svg/icons/TelegramOutlineIcon.tsx
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,7 +7,6 @@ export type Links = { | |
x: string; | ||
github: string; | ||
discord: string; | ||
telegram: string; | ||
tos: string; | ||
}; | ||
|
||
|