Update NavTabs.tsx

staging
zomars 2022-04-26 10:11:59 -06:00
parent f51513841e
commit 0a7d077914
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
import { AdminRequired } from "components/ui/AdminRequired";
import Link, { LinkProps } from "next/link";
import { useRouter } from "next/router";
import React, { ElementType, FC, Fragment } from "react";
import { ElementType, FC, Fragment } from "react";
import { useLocale } from "@calcom/lib/hooks/useLocale";
@ -46,7 +46,7 @@ const NavTabs: FC<NavTabProps> = ({ tabs, linkProps }) => {
aria-hidden="true"
/>
)}
<span>{tab.name}</span>
<span>{t(tab.name)}</span>
</a>
</Link>
</Component>