1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2025-01-19 08:52:25 +01:00

Fix a bug: unable to show payment schedules list if active PayZen

This commit is contained in:
Du Peng 2022-03-29 17:01:06 +02:00
parent 3437f3a080
commit 043c5aafc5
2 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,7 @@
# Changelog Fab-manager # Changelog Fab-manager
- Fix a bug: unable to show payment schedules list if active PayZen
## v5.3.7 2022 March 28 ## v5.3.7 2022 March 28
- Updated Spanish translations (thanks to [@altieriranedo](https://crowdin.com/profile/altieriranedo)) - Updated Spanish translations (thanks to [@altieriranedo](https://crowdin.com/profile/altieriranedo))

View File

@ -27,6 +27,7 @@ export const StripeElements: React.FC = memo(({ children }) => {
{stripe && <Elements stripe={stripe}> {stripe && <Elements stripe={stripe}>
{children} {children}
</Elements>} </Elements>}
{!stripe && children}
</div> </div>
); );
}); });