diff --git a/web/modals/threads/confirm-leave-thread-modal.react.js b/web/modals/threads/confirm-leave-thread-modal.react.js --- a/web/modals/threads/confirm-leave-thread-modal.react.js +++ b/web/modals/threads/confirm-leave-thread-modal.react.js @@ -14,21 +14,23 @@ +onConfirm: () => void, }; function ConfirmLeaveThreadModal(props: Props): React.Node { - const { onClose, onConfirm } = props; + const { onClose, onConfirm, threadInfo } = props; + const { uiName } = threadInfo; return (

- Are you sure you want to leave thread? This and this will happen if - you do so. + {'Are you sure you want to leave "'} + {uiName} + {'"?'}