fix(ui): clear progress image on cancel

This commit is contained in:
psychedelicious 2023-05-11 19:31:08 +10:00
parent a3f81f4b98
commit 7f5f4689cc

View File

@ -418,6 +418,7 @@ export const systemSlice = createSlice({
state.currentStep = 0;
state.totalSteps = 0;
state.statusTranslationKey = 'common.statusConnected';
state.progressImage = null;
state.toastQueue.push(
makeToast({ title: t('toast.canceled'), status: 'warning' })