Skip to content

Commit

Permalink
fix: atualizando para main mais recente
Browse files Browse the repository at this point in the history
  • Loading branch information
m4rllon committed Aug 14, 2024
1 parent 620558a commit 91549d9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/pages/landing/ultimas-licitacoes/index.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ export default function UltimasLicitacoes() {
<ul className={styles.licitacoesWrapper}>
{maisLicitacoes.map((item) => {
return (
<li data-testid="listitem-testid">
<CardLicitacoes key={item.id} data={item} />
<li key={item.id} data-testid="listitem-testid">
<CardLicitacoes data={item} />
</li>
);
})}
Expand Down

0 comments on commit 91549d9

Please sign in to comment.