From 7193a711cb829d6993305be4491adc4553584a4e Mon Sep 17 00:00:00 2001 From: ArturHoncharuk Date: Tue, 6 Aug 2024 14:14:53 +0300 Subject: [PATCH] [AMB-4257] fix: update telegram url --- src/screens/AMBMarket/components/About.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/screens/AMBMarket/components/About.tsx b/src/screens/AMBMarket/components/About.tsx index f69a5fc2..192a30b5 100644 --- a/src/screens/AMBMarket/components/About.tsx +++ b/src/screens/AMBMarket/components/About.tsx @@ -11,6 +11,7 @@ import { } from '@components/svg/icons'; import { scale, verticalScale } from '@utils/scaling'; import { useTranslation } from 'react-i18next'; +import Config from '@constants/config'; interface Link { title: string; @@ -41,7 +42,7 @@ const SOCIAL_LINKS: Link[] = [ }, { title: 'Telegram', - url: 'https://t.me/airDAO_official', + url: Config.AIRDAO_TELEGRAM_URL, icon: } ];