Remove old import & pass through result

in InteractiveAuthDialog
This commit is contained in:
David Baker 2017-03-03 14:31:52 +00:00
parent 1bdf213d67
commit 62d9439530
2 changed files with 1 additions and 2 deletions

View file

@ -60,7 +60,7 @@ export default React.createClass({
_onAuthFinished: function(success, result) {
if (success) {
this.props.onFinished(true);
this.props.onFinished(true, result);
} else {
this.setState({
authError: result,