Skip to content

Commit 7f86c35

Browse files
committed
chore: format
1 parent 2a3b084 commit 7f86c35

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/index.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1218,7 +1218,7 @@ const app = new Elysia({
12181218
<tbody>
12191219
{userJobs.map((job) => (
12201220
<>
1221-
<tr key={`job-${job.id}` as any} id={`job-row-${job.id}`}>
1221+
<tr id={`job-row-${job.id}`}>
12221222
<td
12231223
class="job-details-toggle cursor-pointer"
12241224
data-job-id={job.id}
@@ -1264,9 +1264,8 @@ const app = new Elysia({
12641264
Detailed File Information:
12651265
</div>
12661266
{job.files_detailed.map(
1267-
(file: Filename, index: number) => (
1267+
(file: Filename) => (
12681268
<div
1269-
key={String(file.id) as any}
12701269
class="flex items-center"
12711270
>
12721271
<span
@@ -1280,7 +1279,7 @@ const app = new Elysia({
12801279
xmlns="http://www.w3.org/2000/svg"
12811280
viewBox="0 0 20 20"
12821281
fill="currentColor"
1283-
class="w-4 h-4 inline-block mx-2 text-neutral-500"
1282+
class="mx-2 inline-block h-4 w-4 text-neutral-500"
12841283
>
12851284
<path
12861285
fill-rule="evenodd"

0 commit comments

Comments
 (0)