Skip to content

Commit

Permalink
Remove extra space in conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
thelovekesh authored and hbhalodia committed Feb 14, 2023
1 parent de56046 commit 39d4493
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Modules/Block.php
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ public function render_login_button( $attributes ): string {
* @since 1.2.3
*/
$force_display = $attributes['forceDisplay'] ?? false;
if ( $force_display || ! is_user_logged_in() || apply_filters( 'rtcamp.google_login_button_display', false ) ) {
if ( $force_display || ! is_user_logged_in() || apply_filters( 'rtcamp.google_login_button_display', false ) ) {
$markup = $this->markup(
[
'login_url' => $this->client->authorization_url(),
Expand Down

0 comments on commit 39d4493

Please sign in to comment.