From 779ac4c77ce3cbebbc1fc9a33eb2e6a56f9e7fd8 Mon Sep 17 00:00:00 2001 From: Amit Amrutiya Date: Sat, 21 Sep 2024 09:57:24 +0530 Subject: [PATCH] refactor: remove unnecessary div wrapper in Modal component Signed-off-by: Amit Amrutiya --- src/custom/Modal/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/custom/Modal/index.tsx b/src/custom/Modal/index.tsx index 6ea90ae6..360e2f83 100644 --- a/src/custom/Modal/index.tsx +++ b/src/custom/Modal/index.tsx @@ -168,7 +168,7 @@ export const ModalFooter: React.FC = ({ helpText, children, va )} -
{children}
+ {children} ); };