fix(notifications) Adjust the timeout for unmute blocked notifications.

This commit is contained in:
Jaya Allamsetty 2021-12-09 14:37:32 -05:00 committed by Дамян Минков
parent a23d57b5ff
commit 9528cbad0e
1 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ MiddlewareRegistry.register(store => next => action => {
store.dispatch(showWarningNotification({
descriptionKey: 'notify.audioUnmuteBlockedDescription',
titleKey: 'notify.audioUnmuteBlockedTitle'
}, NOTIFICATION_TIMEOUT_TYPE.LONG));
}, NOTIFICATION_TIMEOUT_TYPE.MEDIUM));
}
break;
}
@ -119,7 +119,7 @@ MiddlewareRegistry.register(store => next => action => {
store.dispatch(showWarningNotification({
descriptionKey: 'notify.videoUnmuteBlockedDescription',
titleKey: 'notify.videoUnmuteBlockedTitle'
}, NOTIFICATION_TIMEOUT_TYPE.LONG));
}, NOTIFICATION_TIMEOUT_TYPE.MEDIUM));
}
break;
}