Skip to content

Commit

Permalink
Merge pull request #31 from unb-mds/bug/build-actions
Browse files Browse the repository at this point in the history
🐛 ESLint barrando build
  • Loading branch information
joseandre25 authored Dec 4, 2023
2 parents c0a7fd5 + 9d4371e commit bcab465
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/components/Pages/Pesquisar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,12 +98,9 @@ export const Pesquisar = () => {
>
Pesquisar
</button>
{/* Exibir os resultados da API, se disponíveis */}
{resultados && resultados.gazettes && (
<div>
{/* Ajuste na propriedade abaixo */}
<p>O assunto "{tema}" foi citado {resultados.total_gazettes} vezes no período:</p>
{/* Iterar sobre os excertos e exibir as informações desejadas */}
<p>O assunto &quot;{tema}&quot; foi citado {resultados.total_gazettes} vezes no período:</p>
{resultados.gazettes.map((excerto, index) => (
<div key={index} className="border p-4 mt-4">
<p>Data: {excerto.date}</p>
Expand Down

0 comments on commit bcab465

Please sign in to comment.