From 7debae9cf1b191c1e9d2e472ed204cc62330048a Mon Sep 17 00:00:00 2001 From: Abel Date: Fri, 22 Nov 2024 01:40:04 +0000 Subject: [PATCH] fix(modal): allow disabling blur --- packages/components/modal/src/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/components/modal/src/index.tsx b/packages/components/modal/src/index.tsx index 228d8f4a..9e7f37af 100644 --- a/packages/components/modal/src/index.tsx +++ b/packages/components/modal/src/index.tsx @@ -17,7 +17,7 @@ import { ModalFooter } from "./ModalFooter"; * Extends React.HTMLAttributes to inherit HTMLDivElement attributes. */ -interface ModalProps extends Omit { +interface ModalProps extends Omit { /** Modal width */ size?: "s" | "m" | "l" | "xl" | "full"; /** Dismiss Callback, also determines if the modal can be dismissed by clicking outside or close button */