diff options
Diffstat (limited to 'src/components/dms/ReportDialog.tsx')
-rw-r--r-- | src/components/dms/ReportDialog.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/dms/ReportDialog.tsx b/src/components/dms/ReportDialog.tsx index c1ea854f9..e4c37c7b5 100644 --- a/src/components/dms/ReportDialog.tsx +++ b/src/components/dms/ReportDialog.tsx @@ -315,13 +315,13 @@ function DoneStep({ let toastMsg: string | undefined if (actions.includes('leave') && actions.includes('block')) { btnText = _(msg`Block and Delete`) - toastMsg = _(msg`Conversation deleted`) + toastMsg = _(msg({message: 'Conversation deleted', context: 'toast'})) } else if (actions.includes('leave')) { btnText = _(msg`Delete Conversation`) - toastMsg = _(msg`Conversation deleted`) + toastMsg = _(msg({message: 'Conversation deleted', context: 'toast'})) } else if (actions.includes('block')) { btnText = _(msg`Block User`) - toastMsg = _(msg`User blocked`) + toastMsg = _(msg({message: 'User blocked', context: 'toast'})) } const onPressPrimaryAction = () => { |