From a12cd7c2bba3e45f336eeadee404f890e3bdfedc Mon Sep 17 00:00:00 2001 From: zeppi Date: Mon, 19 Jul 2021 17:37:14 -0400 Subject: [PATCH] site help email -odysee tx failed --- ui/modal/modalTransactionFailed/view.jsx | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/ui/modal/modalTransactionFailed/view.jsx b/ui/modal/modalTransactionFailed/view.jsx index c10e19f3b..64c77d504 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@odysee.com if you continue to have issues.')}

+

+ {__('Sorry about that. Contact %SITE_HELP_EMAIL% if you continue to have issues.', { + SITE_HELP_EMAIL, + })} +

); }