feat(notifications): Make all error notifications sticky.

There are many cases where the error disappears and users easily miss the information.
This commit is contained in:
damencho
2025-02-07 14:36:46 -06:00
committed by Дамян Минков
parent f670f39dd2
commit 0387cdc888
15 changed files with 30 additions and 37 deletions

View File

@@ -190,7 +190,7 @@ export default class AbstractAddPeopleDialog<P extends IProps, S extends IState>
}));
dispatch(showErrorNotification({
titleKey: 'addPeople.failedToAdd'
}, NOTIFICATION_TIMEOUT_TYPE.MEDIUM));
}));
} else if (!_callFlowsEnabled) {
const invitedCount = invitees.length;
let notificationProps: INotificationProps | undefined;