Skip to content

Commit

Permalink
rm unused bottom bool that caused errors with new props pass
Browse files Browse the repository at this point in the history
  • Loading branch information
Shane98c committed Jan 12, 2024
1 parent 15900f2 commit cbabf16
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions src/grid.js
Original file line number Diff line number Diff line change
Expand Up @@ -89,13 +89,7 @@ const Grid = ({ horizontal, vertical, count = 5, values, sx, ...props }) => {
...horizontalSx,
}}
>
<HorizontalGrid
bottom
values={values.horizontal}
y={y}
sx={sx}
{...props}
/>
<HorizontalGrid values={values.horizontal} y={y} sx={sx} {...props} />
</Box>
)}
</>
Expand Down

0 comments on commit cbabf16

Please sign in to comment.