Skip to content

Commit

Permalink
[Menu] Fix demo jump
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari committed Oct 25, 2019
1 parent 75cd925 commit 8c8c77e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/src/pages/components/menus/MenuListComposition.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export default function MenuListComposition() {
>
Toggle Menu Grow
</Button>
<Popper open={open} anchorEl={anchorRef.current} keepMounted transition disablePortal>
<Popper open={open} anchorEl={anchorRef.current} disablePortal>
{({ TransitionProps, placement }) => (
<Grow
{...TransitionProps}
Expand Down
2 changes: 1 addition & 1 deletion docs/src/pages/components/menus/MenuListComposition.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ export default function MenuListComposition() {
>
Toggle Menu Grow
</Button>
<Popper open={open} anchorEl={anchorRef.current} keepMounted transition disablePortal>
<Popper open={open} anchorEl={anchorRef.current} transition disablePortal>
{({ TransitionProps, placement }) => (
<Grow
{...TransitionProps}
Expand Down

0 comments on commit 8c8c77e

Please sign in to comment.