diff --git a/web/react/components/error_bar.jsx b/web/react/components/error_bar.jsx index 279e0c3158..3362ab8350 100644 --- a/web/react/components/error_bar.jsx +++ b/web/react/components/error_bar.jsx @@ -49,7 +49,11 @@ export default class ErrorBar extends React.Component { componentWillMount() { if (global.window.mm_config.SendEmailNotifications === 'false') { - ErrorStore.storeLastError({message: this.props.intl.formatMessage({id: 'error_bar.preview_mode'})}); + ErrorStore.storeLastError({message: this.props.intl.formatMessage( + { + id: 'error_bar.preview_mode', + defaultMessage: 'Preview Mode: Email notifications have not been configured' + })}); this.onErrorChange(); } }