Skip to content

Commit

Permalink
Merge pull request #32185 from rezkiy37/fix/32182-theme-switching
Browse files Browse the repository at this point in the history
Workspace in the workspace list is misaligned when deleted offline

(cherry picked from commit aef0a64)
  • Loading branch information
puneetlath authored and OSBotify committed Nov 29, 2023
1 parent 80b8360 commit 11ffba0
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 11ffba0

Please sign in to comment.