Skip to content

Commit

Permalink
refactor: remove unnecessary div wrapper in Modal component
Browse files Browse the repository at this point in the history
Signed-off-by: Amit Amrutiya <[email protected]>
  • Loading branch information
amitamrutiya committed Sep 21, 2024
1 parent 5529c34 commit 779ac4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/custom/Modal/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ export const ModalFooter: React.FC<ModalFooterProps> = ({ helpText, children, va
</IconButton>
</CustomTooltip>
)}
<div>{children}</div>
{children}
</StyledFooter>
);
};
Expand Down

0 comments on commit 779ac4c

Please sign in to comment.