Skip to content

Commit

Permalink
Merge pull request #58 from the-collab-lab/jg-fix-type-of-prop-value
Browse files Browse the repository at this point in the history
fix: change ListItem disablePadding value from string to Boolean
  • Loading branch information
jongranados committed May 28, 2023
2 parents 7232e44 + 5ab38a9 commit 9e625ef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ListItem.jsx
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 9e625ef

Please sign in to comment.