diff --git a/src/js/components/ContextMenu/ContextMenuItems.js b/src/js/components/ContextMenu/ContextMenuItems.js index fde7d72d..aa8f002c 100644 --- a/src/js/components/ContextMenu/ContextMenuItems.js +++ b/src/js/components/ContextMenu/ContextMenuItems.js @@ -157,10 +157,10 @@ const ContextMenuItems = ({ {provider === 'spotify' && } + {provider === 'spotify' && ( <> - )} diff --git a/src/js/views/Track.js b/src/js/views/Track.js index 08d10d0b..3ff391e0 100755 --- a/src/js/views/Track.js +++ b/src/js/views/Track.js @@ -71,13 +71,11 @@ const LyricsSelector = ({ const LyricsContent = ({ authorized, - loading, track: { lyrics, lyrics_path, } = {}, }) => { - if (loading) return ; if (!lyrics && !authorized) { return (

@@ -109,7 +107,6 @@ const LyricsContent = ({ }; const Lyrics = ({ - loading, authorized, track, getTrackLyrics, @@ -117,7 +114,6 @@ const Lyrics = ({ <>

- {loading && }

- +
@@ -327,7 +329,6 @@ class Track extends React.Component {