Skip to content

Commit 4500620

Browse files
committed
chore(modal): reorder lines to allow styled
1 parent 85e73a5 commit 4500620

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/paste-core/components/modal/src/ModalBody.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ const ModalBody = React.forwardRef<HTMLDivElement, ModalBodyProps>(
1919
({ children, element = "MODAL_BODY", ...props }, ref) => {
2020
return (
2121
<Box
22-
{...safelySpreadBoxProps(props)}
2322
overflowY="auto"
2423
paddingX="space90"
2524
paddingY="space10"
2625
as="div"
2726
element={element}
2827
ref={ref}
28+
{...safelySpreadBoxProps(props)}
2929
>
3030
{children}
3131
</Box>

0 commit comments

Comments
 (0)