feat(ui): remove toasts for network bc we have status to tell us

This commit is contained in:
Mary Hipp 2023-04-27 16:13:42 -04:00 committed by psychedelicious
parent 1e837e3c9d
commit 4453a0d20d

View File

@ -409,9 +409,6 @@ export const systemSlice = createSlice({
message: `Connected to server`,
level: 'info',
});
state.toastQueue.push(
makeToast({ title: i18n.t('toast.connected'), status: 'success' })
);
});
/**
@ -427,9 +424,6 @@ export const systemSlice = createSlice({
message: `Disconnected from server`,
level: 'error',
});
state.toastQueue.push(
makeToast({ title: i18n.t('toast.disconnected'), status: 'error' })
);
});
/**