Skip to content

Commit

Permalink
fix error2
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanPaul1515 committed Oct 14, 2024
1 parent bb7b2ae commit 217a1e1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/sections/Desconferencias.astro
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ import Title from "../shared/Title.astro";
<div class="mt-6"></div>
<div class="tabla-contenido">
{eventos.map((evento) => (
<div class="evento-card" key={evento.horario + evento.ponente}> <!-- El key se mantiene aquí -->
<div class="evento-card"> <!-- Sin el key -->
<div class="horario">{evento.horario}</div>
<div class="contenido">
<div class="actividad">
<strong class="text-lg md:text-xl font-semibold text-heading-2">{evento.actividad}</strong>
<div class="ponente"><strong>{evento.ponente}</strong></div>
<div class="etiquetas">
{evento.etiquetas.map((etiqueta) => (
<span class="etiqueta"><strong>{etiqueta}</strong></span> <!-- Aquí se ha eliminado el key -->
<span class="etiqueta"><strong>{etiqueta}</strong></span>
))}
</div>
<p class="text-lg md:text-xl font-semibold text-heading-2" style="font-size: 0.875rem;">{evento.detalles}</p>
Expand Down

0 comments on commit 217a1e1

Please sign in to comment.