feat: service tracker

This commit is contained in:
hamster1963
2024-11-29 09:00:04 +08:00
parent d7f0410dcd
commit 2462dfc21b
14 changed files with 229 additions and 69 deletions
+1 -2
View File
@@ -2,7 +2,6 @@ import { cn } from "@/lib/utils";
import { m } from "framer-motion";
import { useTranslation } from "react-i18next";
export default function TabSwitch({
tabs,
currentTab,
@@ -38,7 +37,7 @@ export default function TabSwitch({
/>
)}
<div className="relative z-20 flex items-center gap-1">
<p className="whitespace-nowrap">{t("tabSwitch."+tab)}</p>
<p className="whitespace-nowrap">{t("tabSwitch." + tab)}</p>
</div>
</div>
))}