Skip to content

Commit f5eca62

Browse files
authored
fix: tooltip provider missing in header (#338)
1 parent b2a7fa4 commit f5eca62

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

frontend/components/header.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ import { AuthenticationDialog } from "./dialog/authentication/authentication-dia
3939
import { VisuallyHidden } from "@radix-ui/react-visually-hidden";
4040
import { DialogTitle } from "@/components/ui/dialog";
4141
import {useUser} from "@/components/provider/user-provider";
42+
import {TooltipProvider} from "@/components/ui/tooltip";
4243

4344
export default function Header() {
4445
const router = useRouter();
@@ -145,6 +146,7 @@ export default function Header() {
145146
/>
146147
</div>
147148
</div>
149+
<TooltipProvider>
148150
<div className="flex flex-row ml-8">
149151
<Button
150152
variant="secondary"
@@ -283,6 +285,7 @@ export default function Header() {
283285
</Button>
284286
)}
285287
</div>
288+
</TooltipProvider>
286289

287290
<AuthenticationDialog
288291
open={dialogState === "authentication"}

0 commit comments

Comments
 (0)