diff --git a/apps/website/src/components/Footer.tsx b/apps/website/src/components/Footer.tsx index c421be961..019de9bec 100644 --- a/apps/website/src/components/Footer.tsx +++ b/apps/website/src/components/Footer.tsx @@ -8,10 +8,13 @@ import { Link } from "./Button.js"; import { LOCALES, swapLocaleInUrl } from "../i18n"; import { useTranslation } from "react-i18next"; import { useLocation } from "preact-iso"; +import { useContext } from "preact/hooks"; +import { LocaleContext } from ".."; export default function Footer() { const { t } = useTranslation(); const { url } = useLocation(); + const currentLocale = useContext(LocaleContext); return (