getSeasons() {
this.$store.dispatch('profile/getSeasons')
.then(() => {
const { seasons } = this;
let { season } = this;
const storageSeason = parseInt(localStorage.getItem('season'), 0);
const filteredSeasons = seasons.filter(item => item.id === storageSeason);
const currentSeason = filteredSeasons[0];
season = currentSeason;
});
},