From e1fc6450c8e36f9543599d22a5f6751776b08ea9 Mon Sep 17 00:00:00 2001 From: Pedro Gomes Date: Tue, 16 Jul 2024 02:19:41 -0300 Subject: [PATCH] :bug: fix: bugs --- src/components/Cards/index.tsx | 10 +++++----- src/components/QuestionSection/styles.ts | 1 - src/screens/EvaluateVisit/styles.ts | 2 +- 3 files changed, 6 insertions(+), 7 deletions(-) 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 ( - +