diff --git a/src/components/Cards/index.tsx b/src/components/Cards/index.tsx index 5ff96a3..16ff8b2 100644 --- a/src/components/Cards/index.tsx +++ b/src/components/Cards/index.tsx @@ -13,7 +13,7 @@ type IVendedor = { supervisorId?: string; companyId: string; stage: string; - blocked?:boolean; + blocked?: boolean; }; const Cards: React.FC = ({ @@ -37,9 +37,9 @@ const Cards: React.FC = ({ cargo: cargo, companyId: companyId, stage: stage, - }); } - - } + }); + } + }; const formattedNota = nota !== undefined ? nota.toFixed(1).replace('.', ',') : ''; @@ -60,7 +60,7 @@ const Cards: React.FC = ({ fetchSupervisor(); }, [companyId, supervisorId, user.job]); return ( - +