From 963468d7fa4d530f5d8a95e1b0b551f13b0fbc3d Mon Sep 17 00:00:00 2001 From: miloschwartz Date: Thu, 11 Dec 2025 10:17:17 -0500 Subject: [PATCH] remove top border from dialog --- server/lib/consts.ts | 3 ++- src/components/Credenza.tsx | 2 +- src/components/ui/dialog.tsx | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/server/lib/consts.ts b/server/lib/consts.ts index b380023e..57149bf6 100644 --- a/server/lib/consts.ts +++ b/server/lib/consts.ts @@ -2,7 +2,8 @@ import path from "path"; import { fileURLToPath } from "url"; // This is a placeholder value replaced by the build process -export const APP_VERSION = "1.13.0-rc.0"; +// export const APP_VERSION = "1.13.0-rc.0"; +export const APP_VERSION = "1.13.0"; export const __FILENAME = fileURLToPath(import.meta.url); export const __DIRNAME = path.dirname(__FILENAME); diff --git a/src/components/Credenza.tsx b/src/components/Credenza.tsx index 8176273f..9d468e60 100644 --- a/src/components/Credenza.tsx +++ b/src/components/Credenza.tsx @@ -131,7 +131,7 @@ const CredenzaHeader = ({ className, children, ...props }: CredenzaProps) => { const CredenzaHeader = isDesktop ? DialogHeader : SheetHeader; return ( - + {children} ); diff --git a/src/components/ui/dialog.tsx b/src/components/ui/dialog.tsx index 3f223d92..328431e9 100644 --- a/src/components/ui/dialog.tsx +++ b/src/components/ui/dialog.tsx @@ -88,7 +88,7 @@ const DialogTitle = React.forwardRef<