From e033c100217a994e30762ba6acfc5535b36cc55d Mon Sep 17 00:00:00 2001 From: miloschwartz Date: Wed, 17 Dec 2025 15:52:12 -0500 Subject: [PATCH] simplify animation --- src/app/layout.tsx | 6 ++++-- src/components/ui/dialog.tsx | 2 +- src/components/ui/dropdown-menu.tsx | 4 ++-- src/components/ui/popover.tsx | 2 +- src/components/ui/select.tsx | 2 +- src/components/ui/tooltip.tsx | 2 +- 6 files changed, 10 insertions(+), 8 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 6342e5d2..e76a5d2f 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,6 +1,6 @@ import type { Metadata } from "next"; import "./globals.css"; -import { Geist, Inter, Manrope } from "next/font/google"; +import { Geist, Inter, Manrope, Open_Sans } from "next/font/google"; import { ThemeProvider } from "@app/providers/ThemeProvider"; import EnvProvider from "@app/providers/EnvProvider"; import { pullEnv } from "@app/lib/pullEnv"; @@ -30,7 +30,9 @@ export const metadata: Metadata = { export const dynamic = "force-dynamic"; -const font = Inter({ subsets: ["latin"] }); +const font = Inter({ + subsets: ["latin"] +}); export default async function RootLayout({ children diff --git a/src/components/ui/dialog.tsx b/src/components/ui/dialog.tsx index cb39029f..1ff09433 100644 --- a/src/components/ui/dialog.tsx +++ b/src/components/ui/dialog.tsx @@ -38,7 +38,7 @@ const DialogContent = React.forwardRef<