Client - fix error message on logout
This commit is contained in:
parent
00a400bc5b
commit
0e98efe5a9
@ -108,12 +108,14 @@
|
||||
|
||||
watch(
|
||||
() => props.user.username,
|
||||
async () => {
|
||||
store.dispatch(STATS_STORE.ACTIONS.GET_USER_STATS, {
|
||||
username: props.user.username,
|
||||
filterType: 'by_time',
|
||||
params: apiParams,
|
||||
})
|
||||
async (newUsername) => {
|
||||
if (newUsername) {
|
||||
store.dispatch(STATS_STORE.ACTIONS.GET_USER_STATS, {
|
||||
username: newUsername,
|
||||
filterType: 'by_time',
|
||||
params: apiParams,
|
||||
})
|
||||
}
|
||||
}
|
||||
)
|
||||
return {
|
||||
|
Loading…
Reference in New Issue
Block a user