commit f0046ec557bf8d52aaf5cb13cf03ab98450adc0a
parent a5f5a9326b26ca5f54fdad1ca8e58158874027f4
Author: Sebastian <sebasjm@gmail.com>
Date: Tue, 2 Jan 2024 12:10:55 -0300
do not send extra if empty
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx b/packages/merchant-backoffice-ui/src/paths/instance/orders/create/CreatePage.tsx
@@ -235,7 +235,7 @@ export function CreatePage({
amount: order.pricing.order_price,
summary: order.pricing.summary,
products: productList,
- extra: JSON.stringify(value.extra),
+ extra: undefinedIfEmpty(value.extra),
pay_deadline: value.payments.pay_deadline
? {
t_s: Math.floor(value.payments.pay_deadline.getTime() / 1000),
diff --git a/packages/merchant-backoffice-ui/src/utils/table.ts b/packages/merchant-backoffice-ui/src/utils/table.ts
@@ -51,7 +51,7 @@ export function buildActions<T extends WithId>(
*/
export function undefinedIfEmpty<
T extends Record<string, unknown> | Array<unknown>,
->(obj: T): T | undefined {
+>(obj: T | undefined): T | undefined {
if (obj === undefined) return undefined;
return Object.values(obj).some((v) => v !== undefined) ? obj : undefined;
}