fix: corrigir filtro de ativos, remover count de areas e navegacao ao clicar

This commit is contained in:
Frederico Castro
2025-12-20 12:22:45 -03:00
parent 45ab7412fe
commit 342e52880e
10 changed files with 2179 additions and 15 deletions

View File

@@ -96,7 +96,7 @@ const SugerirConsultores = ({ onClose, onSelectConsultor }) => {
<option value="">Todas as areas</option>
{areas.map((area) => (
<option key={area.nome} value={area.nome}>
{area.nome} ({area.count})
{area.nome}
</option>
))}
</select>