Skip to content

Commit

Permalink
add back condition
Browse files Browse the repository at this point in the history
  • Loading branch information
CollinBeczak committed Jan 9, 2024
1 parent 9d693b9 commit adc1f73
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/SignInButton/SignInButton.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export class SignInButton extends Component {
}

render() {
if (this.state.clicked) {
if (this.props.checkingLoginStatus || this.state.clicked) {
return (
<BusySpinner
className={classNames("mr-mx-8", {"mr-mx-20": this.props.longForm})}
Expand Down

0 comments on commit adc1f73

Please sign in to comment.