refactor: alinha features financeiras ao novo naming

This commit is contained in:
Felipe Coutinho
2026-03-14 12:50:55 +00:00
parent ef918a3667
commit 67ad4b9d02
51 changed files with 876 additions and 898 deletions

View File

@@ -33,7 +33,7 @@ interface CardItemProps {
limit: number | null;
limitInUse?: number | null;
limitAvailable?: number | null;
contaName: string;
accountName: string;
logo?: string | null;
note?: string | null;
onEdit?: () => void;
@@ -52,14 +52,14 @@ export function CardItem({
limit,
limitInUse,
limitAvailable,
contaName: _contaName,
accountName: _accountName,
logo,
note,
onEdit,
onInvoice,
onRemove,
}: CardItemProps) {
void _contaName;
void _accountName;
const limitTotal = limit ?? null;
const used =