From f57b0d4cc7521f06b09406aaaadfbb08a8085db7 Mon Sep 17 00:00:00 2001 From: Richard Lewis Date: Tue, 1 Aug 2017 17:43:38 +0100 Subject: [PATCH] Fix invalid translation --- src/components/views/elements/AppWarning.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/views/elements/AppWarning.js b/src/components/views/elements/AppWarning.js index 527ee087d6..372535e069 100644 --- a/src/components/views/elements/AppWarning.js +++ b/src/components/views/elements/AppWarning.js @@ -19,7 +19,7 @@ AppWarning.propTypes = { errorMsg: PropTypes.string, }; AppWarning.defaultProps = { - errorMsg: _t('Error'), + errorMsg: 'Error', }; export default AppWarning;