Skip to content

Commit

Permalink
Fix where we were still using the old variable for the former configu…
Browse files Browse the repository at this point in the history
…rable element ID.
  • Loading branch information
Nicolas Garnier committed Feb 12, 2018
1 parent 4456e30 commit ff3b6ed
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/FirebaseAuth.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export default class FirebaseAuth extends React.Component {
if (this.uiCallback) {
this.uiCallback(this.firebaseUiWidget);
}
this.firebaseUiWidget.start('#' + this.elementId, this.uiConfig);
this.firebaseUiWidget.start('#' + ELEMENT_ID, this.uiConfig);
}

/**
Expand Down

0 comments on commit ff3b6ed

Please sign in to comment.