From 762a84220b02fe766786916739cb34d948004c68 Mon Sep 17 00:00:00 2001 From: Sunil Pai Date: Fri, 14 Jun 2024 08:46:46 +0100 Subject: [PATCH] don't spread classname into AlertDialog.Content I accidentally removed this destructuring in https://github.com/cloudflare/orange/pull/46, bringing it back --- app/components/AlertDialog.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/components/AlertDialog.tsx b/app/components/AlertDialog.tsx index bc5ef15d..8a199f33 100644 --- a/app/components/AlertDialog.tsx +++ b/app/components/AlertDialog.tsx @@ -19,7 +19,7 @@ Overlay.displayName = 'Overlay' export const Content = forwardRef< HTMLDivElement, AlertDialog.AlertDialogContentProps ->(({ children, ...rest }, ref) => ( +>(({ className: _className, children, ...rest }, ref) => (