diff --git a/src/pages/accounting/AccountingReconcileDetailPage.tsx b/src/pages/accounting/AccountingReconcileDetailPage.tsx index ca3f8ce..67d086a 100644 --- a/src/pages/accounting/AccountingReconcileDetailPage.tsx +++ b/src/pages/accounting/AccountingReconcileDetailPage.tsx @@ -500,7 +500,7 @@ export default function AccountingReconcileDetailPage() { { company_id: cid, account_id: transfer.other_account_id, date: transfer.date, type: otherType, amount: amt, description: `Transfer ${transfer.direction === "out" ? "from" : "to"} ${thisName}${memo ? ` — ${memo}` : ""}`, - category: "Transfer", transfer_id: transferId, + category: "Transfer", transfer_id: transferId, cleared: false, }, ]; const { data, error } = await accounting.from("transactions").insert(rows).select("id,account_id");