Everything compiling again

This commit is contained in:
John Lyon-Smith
2018-02-26 09:14:04 -08:00
parent 0571196a7f
commit ab243dc6db
11 changed files with 91 additions and 148 deletions

View File

@@ -1,7 +1,7 @@
import React from 'react'
import { ProfileForm } from './ProfileForm'
import { Constants, api } from '../helpers'
import { WaitDialog, MessageDialog, ChangePasswordDialog, ProgressDialog, ChangeEmailDialog } from '../Dialog'
import { WaitDialog, MessageDialog, ChangePasswordDialog, ChangeEmailDialog } from '../Dialog'
import { autoBind } from 'auto-bind2'
export class Profile extends React.Component {
@@ -165,11 +165,6 @@ export class Profile extends React.Component {
<WaitDialog active={!!this.state.waitDialog} message={this.state.waitDialog ? this.state.waitDialog.message : ''} />
<ChangePasswordDialog open={!!this.state.changePasswordDialog} onDismiss={this.handleChangePasswordDismiss} />
<ProgressDialog open={!!this.state.progressDialog}
message={this.state.progressDialog ? this.state.progressDialog.message : ''}
percent={this.state.uploadPercent}
onCancel={this.handleUploadCancel} />
</div>
)
}