diff --git a/src/components/layout/BrandPill.tsx b/src/components/layout/BrandPill.tsx index c38fe63c..09b1067c 100644 --- a/src/components/layout/BrandPill.tsx +++ b/src/components/layout/BrandPill.tsx @@ -2,13 +2,14 @@ import classNames from "classnames"; import { useTranslation } from "react-i18next"; import { Icon, Icons } from "@/components/Icon"; +import { useIsMobile } from "@/hooks/useIsMobile"; export function BrandPill(props: { clickable?: boolean; - // hideTextOnMobile?: boolean; backgroundClass?: string; }) { const { t } = useTranslation(); + const isMobile = useIsMobile(); return (