diff --git a/src/components/landing/layout/footer/language-picker.tsx b/src/components/landing/layout/footer/language-picker.tsx index 827139063..74d69d4d7 100644 --- a/src/components/landing/layout/footer/language-picker.tsx +++ b/src/components/landing/layout/footer/language-picker.tsx @@ -1,6 +1,7 @@ import React from "react"; import {useTranslation} from "react-i18next"; import moment from "moment"; +import { Form } from "react-bootstrap"; const LanguagePicker: React.FC = () => { const {i18n} = useTranslation(); @@ -11,7 +12,13 @@ const LanguagePicker: React.FC = () => { } return ( - + ) }