Style fix

pull/1612/head
David Baker 2016-06-09 09:56:11 +01:00
parent f6aa9a7ea4
commit 4fc311da90
1 changed files with 1 additions and 3 deletions

View File

@ -120,9 +120,7 @@ module.exports = React.createClass({
if (event.target.checked) {
var data = {}
if (this.props.brand) {
data['brand'] = this.props.brand;
} else if (this.props.brand === undefined) {
data['brand'] = 'Vector';
data['brand'] = this.props.brand || 'Vector';
}
emailPusherPromise = UserSettingsStore.addEmailPusher(address, data);
} else {