From 15e696c4d6662c8517d0bdd34fecc2ffb23e5db2 Mon Sep 17 00:00:00 2001 From: Anthony Date: Thu, 22 Jul 2021 22:03:42 +0200 Subject: [PATCH] bugfix not updating the frontend on account add --- ui/page/settingsStripeAccount/view.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/page/settingsStripeAccount/view.jsx b/ui/page/settingsStripeAccount/view.jsx index 7c0b6d8d2..4276ca306 100644 --- a/ui/page/settingsStripeAccount/view.jsx +++ b/ui/page/settingsStripeAccount/view.jsx @@ -163,7 +163,7 @@ class StripeAccountConnection extends React.Component { // if it's beamer's error indicating the account is not linked yet if (error.message.indexOf(errorString) > -1) { // get stripe link and set it on the frontend - getAndSetAccountLink(); + getAndSetAccountLink(true); } else { // not an error from Beamer, throw it throw new Error(error);