Remove unnecessary wallpaper load call

This commit is contained in:
Gamebrary 2022-10-28 19:48:53 -07:00
parent 8884385ba2
commit 26da8f51bd

View file

@ -105,18 +105,9 @@ export default {
this.load();
},
loadWallpapers() {
this.$store.dispatch('LOAD_WALLPAPERS')
.catch(() => {
this.$bvToast.toast('There was an error loading wallpapers', { variant: 'danger' });
});
},
async load() {
await this.$store.dispatch('LOAD_RELEASES');
this.loadWallpapers();
// TODO: move all to actions, consider making live update optional? if it gets expensive $$$
db.collection('settings').doc(this.user.uid)
.onSnapshot((doc) => {