From 5dcd30010ed86d136d873dcb57bcad1ba44edd55 Mon Sep 17 00:00:00 2001 From: Felipe Coutinho Date: Sat, 23 May 2026 13:22:32 -0300 Subject: [PATCH] fix(lancamentos): corrige tipo do filtro selecionado --- .../transactions/components/table/transactions-filters.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/features/transactions/components/table/transactions-filters.tsx b/src/features/transactions/components/table/transactions-filters.tsx index 2cfdd6b..6eaf150 100644 --- a/src/features/transactions/components/table/transactions-filters.tsx +++ b/src/features/transactions/components/table/transactions-filters.tsx @@ -169,7 +169,7 @@ function FilterSelect({ hasSelection ? "text-foreground" : "text-muted-foreground", )} > - {hasSelection && renderContent + {current && renderContent ? renderContent(current.label) : displayLabel}