Skip to content

Commit a20bab1

Browse files
committed
Spelling
1 parent a0cecb8 commit a20bab1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/webamp/js/components/MainWindow/Shuffle.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { memo } from "react";
22
import classnames from "classnames";
33
import * as Actions from "../../actionCreators";
44
import * as Selectors from "../../selectors";
5-
import ContextMenuWraper from "../ContextMenuWrapper";
5+
import ContextMenuWrapper from "../ContextMenuWrapper";
66
import { Node } from "../ContextMenu";
77
import { useTypedSelector, useActionCreator } from "../../hooks";
88
import 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

0 commit comments

Comments
 (0)