diff --git a/src/web/src/components/header.jsx b/src/web/src/components/header.jsx
index b1fc97a..07d9c01 100644
--- a/src/web/src/components/header.jsx
+++ b/src/web/src/components/header.jsx
@@ -35,30 +35,32 @@ function Header() {
}
return (
-
- {tabs.map((tab) => (
-
-
setActiveTab(tab.id)}
- className={`${
- activeTab === tab.id ? "" : "hover:text-white/60"
- } relative rounded-full px-3 py-1.5 text-sm font-medium text-white outline-sky-400 transition focus-visible:outline-2`}
- style={{
- WebkitTapHighlightColor: "transparent",
- }}
- >
- {activeTab === tab.id && (
-
- )}
- {tab.label}
-
-
- ))}
+
+
+ {tabs.map((tab) => (
+
+ setActiveTab(tab.id)}
+ className={`${
+ activeTab === tab.id ? "" : "hover:text-white/60"
+ } relative rounded-full px-3 py-1.5 text-sm font-medium text-white outline-sky-400 transition focus-visible:outline-2`}
+ style={{
+ WebkitTapHighlightColor: "transparent",
+ }}
+ >
+ {activeTab === tab.id && (
+
+ )}
+ {tab.label}
+
+
+ ))}
+
);
}