From a20bab187725360923d72b171715ca2cd5aa32d1 Mon Sep 17 00:00:00 2001 From: Jordan Eldredge Date: Mon, 21 Jul 2025 22:24:23 -0700 Subject: [PATCH] Spelling --- packages/webamp/js/components/MainWindow/Shuffle.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/packages/webamp/js/components/MainWindow/Shuffle.tsx b/packages/webamp/js/components/MainWindow/Shuffle.tsx index b76ef5ab..bca809b2 100644 --- a/packages/webamp/js/components/MainWindow/Shuffle.tsx +++ b/packages/webamp/js/components/MainWindow/Shuffle.tsx @@ -2,7 +2,7 @@ import { memo } from "react"; import classnames from "classnames"; import * as Actions from "../../actionCreators"; import * as Selectors from "../../selectors"; -import ContextMenuWraper from "../ContextMenuWrapper"; +import ContextMenuWrapper from "../ContextMenuWrapper"; import { Node } from "../ContextMenu"; import { useTypedSelector, useActionCreator } from "../../hooks"; import WinampButton from "../WinampButton"; @@ -11,7 +11,7 @@ const Shuffle = memo(() => { const shuffle = useTypedSelector(Selectors.getShuffle); const handleClick = useActionCreator(Actions.toggleShuffle); return ( - ( { onClick={handleClick} title="Toggle Shuffle" /> - + ); });