Remove experimental features and experimental ereader setting

This commit is contained in:
advplyr 2023-06-10 14:11:51 -05:00
parent b60473d7ae
commit 0ec50bb570
23 changed files with 9 additions and 106 deletions

View file

@ -23,7 +23,6 @@ export const state = () => ({
developerMode: false,
processingBatch: false,
previousPath: '/',
showExperimentalFeatures: false,
bookshelfBookIds: [],
episodeTableEpisodeIds: [],
openModal: null,
@ -231,10 +230,6 @@ export const mutations = {
setProcessingBatch(state, val) {
state.processingBatch = val
},
setExperimentalFeatures(state, val) {
state.showExperimentalFeatures = val
localStorage.setItem('experimental', val ? 1 : 0)
},
setOpenModal(state, val) {
state.openModal = val
},