From c8772f874266a90f3dc5a3ea74ac7a72240e42e2 Mon Sep 17 00:00:00 2001 From: vladimir-cucu Date: Mon, 25 Mar 2024 08:49:06 +0200 Subject: [PATCH] refactor: show default value of shouldPropagateClickEvent in storybook --- src/components/Modal/Modal.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Modal/Modal.tsx b/src/components/Modal/Modal.tsx index a33792241..231347b4b 100644 --- a/src/components/Modal/Modal.tsx +++ b/src/components/Modal/Modal.tsx @@ -39,7 +39,7 @@ export const Modal = ({ className, close, title, - shouldPropagateClickEvent, + shouldPropagateClickEvent = false, ...wrapperProps }: Props): ReactElement => { // list of focusable selectors is based on this Stack Overflow answer: