From f3008aed7d2aff79a926ed2fab5400f043fb8fb7 Mon Sep 17 00:00:00 2001 From: Gitead Date: Wed, 6 May 2026 19:26:37 -0400 Subject: [PATCH] refactor: remove redundant Pay in Full button The inline status dropdown now handles this via pay-absolute-full-claim, making the standalone button a duplicate. Co-Authored-By: Claude Sonnet 4.6 --- .../payments/payments-recent-table.tsx | 35 ++++++------------- 1 file changed, 11 insertions(+), 24 deletions(-) diff --git a/apps/Frontend/src/components/payments/payments-recent-table.tsx b/apps/Frontend/src/components/payments/payments-recent-table.tsx index d7af31eb..d8541cdd 100755 --- a/apps/Frontend/src/components/payments/payments-recent-table.tsx +++ b/apps/Frontend/src/components/payments/payments-recent-table.tsx @@ -859,32 +859,19 @@ export default function PaymentsRecentTable({ )} - {/* When NOT PAID and NOT VOID → Pay in Full + Void */} + {/* When NOT PAID and NOT VOID → Void */} {payment.status !== "PAID" && payment.status !== "VOID" && ( - <> - - - {/* NEW: Void */} - - + )} {/* When PAID → Revert */}