Skip to content

Commit ffe4572

Browse files
authored
fix:duplication errors
1 parent 81e38bb commit ffe4572

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/components/admin/events/EventsTable.jsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -227,11 +227,8 @@ function EventsTable() {
227227
<td
228228
aria-label="events"
229229
className="hidden sm:table-cell py-4 "
230-
className="hidden sm:table-cell py-4"
231-
id={`checkbox-${row.id}`}
232230
>
233231
<input
234-
aria-labelledby={`checkbox-${row.id}`}
235232
type="checkbox"
236233
className="cursor-pointer"
237234
onChange={(event) => handleSelectRow(event, row.id)}
@@ -240,7 +237,7 @@ function EventsTable() {
240237
</td>
241238
<td className="whitespace-wrap px-2 py-4">{row.eventName}</td>
242239
<td>{row.city}</td>
243-
<td className="hidden sm:table-cell">{row.date}</td>
240+
<td className="hidden sm:table-cell">{row.date}</td>
244241
<td className="hidden sm:table-cell">{row.from}</td>
245242
<td className="hidden sm:table-cell">{row.to}</td>
246243
<td className="hidden sm:table-cell">{row.chapter}</td>

0 commit comments

Comments
 (0)