fix: delete button is submitting
All checks were successful
Build and Deploy Svelte App / build-and-deploy (push) Successful in 2m18s

This commit is contained in:
itsscb 2025-04-12 23:49:02 +02:00
parent 209f9e09af
commit aebe137662

View File

@ -97,8 +97,10 @@
<td>{wk.workout_type}</td> <td>{wk.workout_type}</td>
<td>{wk.duration_minutes}</td> <td>{wk.duration_minutes}</td>
<td> <td>
<button onclick={() => deleteRow(i)} <button
><Trash2 color="red" /></button type="button"
ontouchstart={() => deleteRow(i)}
onclick={() => deleteRow(i)}><Trash2 color="red" /></button
> >
</td> </td>
</tr> </tr>