From abfd9990bde707d09190ce88cf86f6f9ede266ff Mon Sep 17 00:00:00 2001 From: Valentin Kaelin Date: Thu, 2 Jan 2020 10:52:52 +0100 Subject: [PATCH] fix: more matches button works again --- client/src/store/modules/summoner.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/src/store/modules/summoner.js b/client/src/store/modules/summoner.js index bddbcaa..82e93d6 100644 --- a/client/src/store/modules/summoner.js +++ b/client/src/store/modules/summoner.js @@ -39,7 +39,7 @@ export const mutations = { }, MATCHES_FOUND(state, { newMatches, stats }) { state.overview.matchesLoading = false - state.overview.matches = [...state.infos.matches, ...newMatches] + state.overview.matches = [...state.overview.matches, ...newMatches] state.overview.matchIndex += newMatches.length state.overview.stats = stats state.champions.championsLoaded = false