[web] Remove useless getters of the store

This commit is contained in:
Alain Nussbaumer
2024-02-21 12:29:16 +01:00
parent bb43de465f
commit 3cadee1d48
4 changed files with 3 additions and 7 deletions

View File

@@ -70,10 +70,6 @@ export default createStore({
},
getters: {
lyrics: (state) => state.lyrics.content,
lyrics_pane: (state) => state.lyrics.pane,
now_playing: (state) => {
const item = state.queue.items.find((e) => e.id === state.player.item_id)
return item === undefined ? {} : item