diff options
Diffstat (limited to 'apps/Player/components/Buttons.js')
-rw-r--r-- | apps/Player/components/Buttons.js | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/Player/components/Buttons.js b/apps/Player/components/Buttons.js index 14452a0..efc8555 100644 --- a/apps/Player/components/Buttons.js +++ b/apps/Player/components/Buttons.js @@ -3,7 +3,6 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome' const Buttons = ({ current, setCurrent, playlist }) => ( <> - <span /> <div className={current !== null && current > 0 ? '' : 'iconOff'} onClick={() => { current !== null && current > 0 && setCurrent(c => c - 1) }} |