diff --git a/marketing/src/containers/Pricing/index.tsx b/marketing/src/containers/Pricing/index.tsx index f87ddd4e..e021f1cc 100755 --- a/marketing/src/containers/Pricing/index.tsx +++ b/marketing/src/containers/Pricing/index.tsx @@ -21,7 +21,7 @@ import { } from './pricing.style'; import { useTranslation } from 'next-i18next'; import { StaticImageData } from 'next/image'; -import styled from 'styled-components'; +import { useConfig } from '@/common/hooks/useConfig'; type Pricing = { id: number; @@ -110,6 +110,7 @@ function toPrice( const Pricing = () => { const [isMonthly, setIsMonthly] = useState(true); const { t } = useTranslation(); + const { appUrl } = useConfig(); const handleToggle = () => { setIsMonthly(!isMonthly); @@ -203,13 +204,21 @@ const Pricing = () => { {/*
*/} -