diff --git a/apps/web/src/views/Idos/components/Footer.tsx b/apps/web/src/views/Idos/components/Footer.tsx
index ad4d71fec18e0..1e99296b3334a 100644
--- a/apps/web/src/views/Idos/components/Footer.tsx
+++ b/apps/web/src/views/Idos/components/Footer.tsx
@@ -1,4 +1,3 @@
-import { useTranslation } from '@pancakeswap/localization'
import { BscScanIcon, CardBody, FlexGap, LanguageIcon, Link, Text } from '@pancakeswap/uikit'
import useTheme from 'hooks/useTheme'
import { useCurrentIDOConfig } from '../hooks/ido/useCurrentIDOConfig'
@@ -6,7 +5,6 @@ import { useIDOContract } from '../hooks/ido/useIDOContract'
export const Footer: React.FC = () => {
const { theme } = useTheme()
- const { t } = useTranslation()
const idoContract = useIDOContract()
const currentIdoConfig = useCurrentIDOConfig()
return (
@@ -21,7 +19,7 @@ export const Footer: React.FC = () => {
- {t(currentIdoConfig.description)}
+ {currentIdoConfig.description}
diff --git a/apps/web/src/views/Idos/config/index.tsx b/apps/web/src/views/Idos/config/index.tsx
index d0ab4051af81d..20997d4760008 100644
--- a/apps/web/src/views/Idos/config/index.tsx
+++ b/apps/web/src/views/Idos/config/index.tsx
@@ -24,7 +24,8 @@ export const idoConfigDict: Record = {
chainId: ChainId.BSC,
bannerUrl: `${ASSET_CDN}/web/ido/myshell-banner.png`,
contractAddress: '0x',
- tgeTitle: {`MyShell's Token Generation Event`},
+ // eslint-disable-next-line react/no-unescaped-entities
+ tgeTitle: MyShell's Token Generation Event,
tgeSubtitle: Exclusively via Binance Keyless Wallet,
description: (
diff --git a/packages/localization/src/config/translations.json b/packages/localization/src/config/translations.json
index 495352bcad93e..1e14634092c44 100644
--- a/packages/localization/src/config/translations.json
+++ b/packages/localization/src/config/translations.json
@@ -3727,5 +3727,9 @@
"To participate, please create a wallet using the Binance Wallet, as importing wallets with seed phrases is not supported for this sale.": "To participate, please create a wallet using the Binance Wallet, as importing wallets with seed phrases is not supported for this sale.",
"MyShell's Token Generation Event": "MyShell's Token Generation Event",
"Exclusively via Binance Keyless Wallet": "Exclusively via Binance Keyless Wallet",
- "Due to regulatory requirements, you are not eligible to participate in.": "Due to regulatory requirements, you are not eligible to participate in."
+ "Due to regulatory requirements, you are not eligible to participate in.": "Due to regulatory requirements, you are not eligible to participate in.",
+ "Disconnected from Binance Wallet": "Disconnected from Binance Wallet",
+ "MyShell is an AI creator platform for everyone to build, share, and own AI agents. Our vision is to create a unified platform that provides product-driven value for web2 users and offers the crypto community participating ownership in practical AI applications, bridging the gap between frontier AI applications and blockchain technology.": "MyShell is an AI creator platform for everyone to build, share, and own AI agents. Our vision is to create a unified platform that provides product-driven value for web2 users and offers the crypto community participating ownership in practical AI applications, bridging the gap between frontier AI applications and blockchain technology.",
+ "hours": "hours",
+ "< 1 hour": "< 1 hour"
}