Skip to content

Commit

Permalink
fix: change ListItem disablePadding value from string to Boolean
Browse files Browse the repository at this point in the history
  • Loading branch information
jongranados committed May 28, 2023
1 parent 7232e44 commit 5ab38a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ListItem.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export function ListItemComponent({

return (
<ListItem
disablePadding={matchesMobileDevice ? 'true' : null}
disablePadding={matchesMobileDevice ? true : null}
sx={{
'&': {
display: 'flex',
Expand Down

0 comments on commit 5ab38a9

Please sign in to comment.