File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
packages/webamp/js/components/MainWindow Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { memo } from "react";
22import classnames from "classnames" ;
33import * as Actions from "../../actionCreators" ;
44import * as Selectors from "../../selectors" ;
5- import ContextMenuWraper from "../ContextMenuWrapper" ;
5+ import ContextMenuWrapper from "../ContextMenuWrapper" ;
66import { Node } from "../ContextMenu" ;
77import { useTypedSelector , useActionCreator } from "../../hooks" ;
88import WinampButton from "../WinampButton" ;
@@ -11,7 +11,7 @@ const Shuffle = memo(() => {
1111 const shuffle = useTypedSelector ( Selectors . getShuffle ) ;
1212 const handleClick = useActionCreator ( Actions . toggleShuffle ) ;
1313 return (
14- < ContextMenuWraper
14+ < ContextMenuWrapper
1515 renderContents = { ( ) => (
1616 < Node
1717 checked = { shuffle }
@@ -27,7 +27,7 @@ const Shuffle = memo(() => {
2727 onClick = { handleClick }
2828 title = "Toggle Shuffle"
2929 />
30- </ ContextMenuWraper >
30+ </ ContextMenuWrapper >
3131 ) ;
3232} ) ;
3333
You can’t perform that action at this time.
0 commit comments