diff options
| author | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-31 16:37:19 +0000 |
|---|---|---|
| committer | Lucas Faria Mendes <lucas.fariamo08@gmail.com> | 2026-03-31 16:37:19 +0000 |
| commit | 1a0ca040822bff2bbbcc7594fe562820543467bc (patch) | |
| tree | d183f63e9a2f8ebe4e0ba82de7d0d0db778b491c /app/resultados | |
| parent | e1ef426374097ac98c71f23063f50e7a28f22f80 (diff) | |
| download | eleicoes-1a0ca040822bff2bbbcc7594fe562820543467bc.tar.gz eleicoes-1a0ca040822bff2bbbcc7594fe562820543467bc.zip | |
Update voting options and validation messages
Diffstat (limited to 'app/resultados')
| -rw-r--r-- | app/resultados/page.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/resultados/page.tsx b/app/resultados/page.tsx index fdd644d..771d974 100644 --- a/app/resultados/page.tsx +++ b/app/resultados/page.tsx @@ -77,7 +77,7 @@ export default function Home() { }, []); const getBarColor = (option: string) => { - if (option === "SIE") return "bg-blue-500"; + if (option === "Juventude Ativa") return "bg-blue-500"; if (option === "Liderança Jovem") return "bg-green-500"; if (option === "NULO") return "bg-red-500"; return "bg-purple-500"; |