Fix click handling for stories

This commit is contained in:
Fedor Indutny 2022-09-27 13:24:21 -07:00 committed by GitHub
parent c0082adc56
commit 698c7a7739
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
78 changed files with 274 additions and 46 deletions

View file

@ -41,6 +41,7 @@ export const MessageRequestActionsConfirmation = ({
if (state === MessageRequestState.blocking) {
return (
<ConfirmationDialog
dialogName="messageRequestActionsConfirmation.blocking"
i18n={i18n}
onClose={() => {
onChangeState(MessageRequestState.default);
@ -77,6 +78,7 @@ export const MessageRequestActionsConfirmation = ({
if (state === MessageRequestState.unblocking) {
return (
<ConfirmationDialog
dialogName="messageRequestActionsConfirmation.unblocking"
i18n={i18n}
onClose={() => {
onChangeState(MessageRequestState.default);
@ -104,6 +106,7 @@ export const MessageRequestActionsConfirmation = ({
if (state === MessageRequestState.deleting) {
return (
<ConfirmationDialog
dialogName="messageRequestActionsConfirmation.deleting"
i18n={i18n}
onClose={() => {
onChangeState(MessageRequestState.default);