From 4d72151ab54a0be99b0a5c2a2920adb8cf2b52ac Mon Sep 17 00:00:00 2001 From: Sylvain Date: Mon, 26 Sep 2022 11:41:58 +0200 Subject: [PATCH] (bug) unable to display the payment schedules management interface --- CHANGELOG.md | 1 + .../components/payment-schedule/payment-schedules-table.tsx | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d94ffc3eb..8a67856ec 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ - Fix a bug: unable to show the daily view of the public agenda, if it contains trainings or events - Fix a bug: plan's categories descriptions are not shown - Fix a bug: groups without plans are shown but empty +- Fix a bug: unable to display the payment schedules management interface ## v5.4.19 2022 September 13 - Fix a bug: computing the wallet amount to debit ignores the applied coupon diff --git a/app/frontend/src/javascript/components/payment-schedule/payment-schedules-table.tsx b/app/frontend/src/javascript/components/payment-schedule/payment-schedules-table.tsx index b9fba4fbd..96ee200c0 100644 --- a/app/frontend/src/javascript/components/payment-schedule/payment-schedules-table.tsx +++ b/app/frontend/src/javascript/components/payment-schedule/payment-schedules-table.tsx @@ -208,12 +208,12 @@ const PaymentSchedulesTable: React.FC = ({ paymentSc ); case 'payzen': + case null: return (
{renderPaymentSchedulesTable()}
); - case null: default: console.error(`[PaymentSchedulesTable] Unimplemented gateway: ${gateway.value}`); return
;