diff --git a/package.json b/package.json index cb87be5e..df2f0a9f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vocechat-web", - "version": "0.9.76", + "version": "0.9.77", "homepage": "https://voce.chat", "dependencies": { "@metamask/onboarding": "^1.0.1", diff --git a/src/routes/home/MobileNavs.tsx b/src/routes/home/MobileNavs.tsx index cbdd90b1..5490fe1a 100644 --- a/src/routes/home/MobileNavs.tsx +++ b/src/routes/home/MobileNavs.tsx @@ -1,5 +1,6 @@ import React from "react"; import { NavLink, useLocation, useMatch } from "react-router-dom"; +import { useTranslation } from "react-i18next"; import clsx from "clsx"; import ChatIcon from "@/assets/icons/chat.svg"; @@ -11,6 +12,7 @@ import { shallowEqual } from "react-redux"; // type Props = {} const MobileNavs = () => { + const { t } = useTranslation("common"); const isHomePath = useMatch(`/`); const { pathname } = useLocation(); const isChatHomePath = useMatch(`/chat`); @@ -45,7 +47,7 @@ const MobileNavs = () => {