Skip to content

Commit

Permalink
fix style combining
Browse files Browse the repository at this point in the history
  • Loading branch information
rezkiy37 committed Nov 29, 2023
1 parent dca1716 commit bf0ad48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/MenuItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const defaultProps = {
const MenuItem = React.forwardRef((props, ref) => {
const theme = useTheme();
const styles = useThemeStyles();
const style = props.style || styles.popoverMenuItem;
const style = StyleUtils.combineStyles(props.style, styles.popoverMenuItem);
const {isSmallScreenWidth} = useWindowDimensions();
const [html, setHtml] = React.useState('');

Expand Down

0 comments on commit bf0ad48

Please sign in to comment.