PM-7392 - Web - app comp - only handle actually possible web logout scenarios.

This commit is contained in:
Jared Snider 2024-05-09 15:09:30 -04:00
parent dceeedd805
commit 775598f448
No known key found for this signature in database
GPG Key ID: A149DDD612516286
1 changed files with 0 additions and 16 deletions

View File

@ -298,22 +298,6 @@ export class AppComponent implements OnDestroy, OnInit {
};
break;
}
case "accessTokenUnableToBeDecrypted": {
toastOptions = {
variant: "error",
title: this.i18nService.t("loggedOut"),
message: this.i18nService.t("accessTokenUnableToBeDecrypted"),
};
break;
}
case "refreshTokenSecureStorageRetrievalFailure": {
toastOptions = {
variant: "error",
title: this.i18nService.t("loggedOut"),
message: this.i18nService.t("refreshTokenSecureStorageRetrievalFailure"),
};
break;
}
default: {
toastOptions = {
variant: "warning",