Skip to content

Commit ff3b6ed

Browse files
author
Nicolas Garnier
committed
Fix where we were still using the old variable for the former configurable element ID.
1 parent 4456e30 commit ff3b6ed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FirebaseAuth.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ export default class FirebaseAuth extends React.Component {
5555
if (this.uiCallback) {
5656
this.uiCallback(this.firebaseUiWidget);
5757
}
58-
this.firebaseUiWidget.start('#' + this.elementId, this.uiConfig);
58+
this.firebaseUiWidget.start('#' + ELEMENT_ID, this.uiConfig);
5959
}
6060

6161
/**

0 commit comments

Comments
 (0)