diff --git a/web/app/providers.tsx b/web/app/providers.tsx index 89185599..32155169 100644 --- a/web/app/providers.tsx +++ b/web/app/providers.tsx @@ -1,14 +1,14 @@ "use client" -import { QueryClientProvider } from "@/lib/get-query-client" import { Toaster } from "@/components/ui/sonner" import { ThemeProvider } from "@/components/ui/theme-provider" +import { TooltipProvider } from "@/components/ui/tooltip" +import { QueryClientProvider } from "@/lib/get-query-client" import { AppProgressProvider as ProgressProvider } from "@bprogress/next" import { ClerkProvider } from "@clerk/nextjs" import { ReactQueryDevtools } from "@tanstack/react-query-devtools" import { Analytics } from "@vercel/analytics/react" import * as React from "react" - export function Providers({ children }: { children: React.ReactNode }) { return ( @@ -18,17 +18,19 @@ export function Providers({ children }: { children: React.ReactNode }) { defaultTheme="system" disableTransitionOnChange > - - {children} - - - + + + {children} + + + + diff --git a/web/components/dashboard/navbar/index.tsx b/web/components/dashboard/navbar/index.tsx index 13caee46..bba3929e 100644 --- a/web/components/dashboard/navbar/index.tsx +++ b/web/components/dashboard/navbar/index.tsx @@ -10,7 +10,7 @@ export default function DashboardNavbar({ userData }: { userData: User }) {
diff --git a/web/components/profile/index.tsx b/web/components/profile/index.tsx index 93a84fb5..2d6e56ab 100644 --- a/web/components/profile/index.tsx +++ b/web/components/profile/index.tsx @@ -27,7 +27,6 @@ import { Tabs, TabsContent, TabsList, TabsTrigger } from "@/components/ui/tabs" import { Tooltip, TooltipContent, - TooltipProvider, TooltipTrigger, } from "@/components/ui/tooltip" import { deleteSandbox, updateSandbox, updateUser } from "@/lib/api/actions" @@ -185,37 +184,35 @@ function ProfileCard({ {isOwnProfile && (
- - - - - - -

- {showAddMoreInfoBanner - ? "Add more information to your profile" - : "Edit your profile"} -

-
-
-
+ + + + + +

+ {showAddMoreInfoBanner + ? "Add more information to your profile" + : "Edit your profile"} +

+
+
)} diff --git a/web/components/profile/navbar.tsx b/web/components/profile/navbar.tsx index 5de5c55a..cec73f0a 100644 --- a/web/components/profile/navbar.tsx +++ b/web/components/profile/navbar.tsx @@ -11,7 +11,7 @@ export default function ProfileNavbar({ userData }: { userData?: User }) {