Skip to content

Commit 59b35cb

Browse files
committed
chore: linting / import sorting
1 parent 97ed6a8 commit 59b35cb

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/components/Nav/Mobile/MenuFooter.tsx

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,10 @@ import {
1010

1111
import LanguagePicker from "@/components/LanguagePicker"
1212

13+
import { MOBILE_LANGUAGE_BUTTON_NAME } from "@/lib/constants"
14+
1315
import FooterButton from "./FooterButton"
1416
import FooterItemText from "./FooterItemText"
15-
import { MOBILE_LANGUAGE_BUTTON_NAME } from "@/lib/constants"
1617

1718
type MenuFooterProps = {
1819
onToggle: () => void
@@ -68,7 +69,11 @@ const MenuFooter = ({
6869
opacity: 0.4,
6970
}} // TODO: Replace with overlay component
7071
>
71-
<MenuButton as={FooterButton} icon={BsTranslate} name={MOBILE_LANGUAGE_BUTTON_NAME}>
72+
<MenuButton
73+
as={FooterButton}
74+
icon={BsTranslate}
75+
name={MOBILE_LANGUAGE_BUTTON_NAME}
76+
>
7277
<FooterItemText>{t("languages")}</FooterItemText>
7378
</MenuButton>
7479
</LanguagePicker>

0 commit comments

Comments
 (0)