[client-app] Remove contact support btn from red box

Summary: See title

Test Plan: manual

Reviewers: evan, halla

Reviewed By: halla

Differential Revision: https://phab.nylas.com/D4049
This commit is contained in:
Juan Tejada 2017-02-28 10:23:42 -08:00
parent 396a027bcb
commit 5714a23501

View file

@ -78,8 +78,6 @@ export default class AccountErrorNotification extends React.Component {
return <span />
} else if (erroredAccounts.length > 1) {
title = "Several of your accounts are having issues";
subtitle = "Contact support";
subtitleAction = () => this._onContactSupport(erroredAccounts[0])
actions = [{
label: checkAgainLabel,
fn: (e) => this._onCheckAgain(e),
@ -112,8 +110,6 @@ export default class AccountErrorNotification extends React.Component {
break;
default: {
title = `Encountered an error while syncing ${erroredAccount.emailAddress}`;
subtitle = "Contact support";
subtitleAction = () => this._onContactSupport(erroredAccount)
let label = this.state.checking ? 'Retrying...' : 'Try Again'
if (this.state.debugKeyPressed) {
label = 'Debug'