diff --git a/ui/modal/modalTransactionFailed/view.jsx b/ui/modal/modalTransactionFailed/view.jsx index b4f4e4dea..d2566ee79 100644 --- a/ui/modal/modalTransactionFailed/view.jsx +++ b/ui/modal/modalTransactionFailed/view.jsx @@ -1,6 +1,7 @@ // @flow import React from 'react'; import { Modal } from 'modal/modal'; +import { SITE_HELP_EMAIL } from 'config'; type Props = { closeModal: () => void, @@ -12,7 +13,11 @@ class ModalTransactionFailed extends React.PureComponent { return ( -

{__('Sorry about that. Contact help@lbry.com if you continue to have issues.')}

+

+ {__("Try refreshing to fix the issue. If that doesn't work, email %SITE_HELP_EMAIL% for support.", { + SITE_HELP_EMAIL, + })} +

); }