Skip to content

Commit

Permalink
Fix blinking re-connect promotional surface (#3361)
Browse files Browse the repository at this point in the history
* Fix blinking re-connect promotional surface

* Adding readme and changelog entries
  • Loading branch information
wjrosa authored Aug 19, 2024
1 parent c8d1fd5 commit c693101
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions changelog.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
*** Changelog ***

= 8.7.0 - xxxx-xx-xx =
* Fix - Re-connect promotional surface blinking after disappearing for merchants that have already connected their Stripe account.
* Fix - Fix possible fatal errors when Stripe settings format is invalid during account connection.
* Fix - Clear webhook state after reconfiguring webhooks to remove outdated error and success statuses.
* Add - Log incoming webhook events and their request body.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ const PromotionalBannerSection = ( {
);

let BannerContent = null;
if ( ! isConnectedViaOAuth ) {
if ( isConnectedViaOAuth === false ) {
BannerContent = <ReConnectAccountBanner />;
} else if ( ! isUpeEnabled ) {
BannerContent = <NewCheckoutExperienceBanner />;
Expand Down
1 change: 1 addition & 0 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,7 @@ If you get stuck, you can ask for help in the Plugin Forum.
== Changelog ==

= 8.7.0 - xxxx-xx-xx =
* Fix - Re-connect promotional surface blinking after disappearing for merchants that have already connected their Stripe account.
* Fix - Fix possible fatal errors when Stripe settings format is invalid during account connection.
* Fix - Clear webhook state after reconfiguring webhooks to remove outdated error and success statuses.
* Add - Log incoming webhook events and their request body.
Expand Down

0 comments on commit c693101

Please sign in to comment.