Client - fix error message on logout

This commit is contained in:
Sam 2021-09-05 09:18:12 +02:00
parent 00a400bc5b
commit 0e98efe5a9

View File

@ -108,12 +108,14 @@
watch( watch(
() => props.user.username, () => props.user.username,
async () => { async (newUsername) => {
store.dispatch(STATS_STORE.ACTIONS.GET_USER_STATS, { if (newUsername) {
username: props.user.username, store.dispatch(STATS_STORE.ACTIONS.GET_USER_STATS, {
filterType: 'by_time', username: newUsername,
params: apiParams, filterType: 'by_time',
}) params: apiParams,
})
}
} }
) )
return { return {