format all

This commit is contained in:
C4illin 2024-05-26 12:46:22 +02:00
parent 50e9b861b0
commit da1a8934e1
3 changed files with 13 additions and 9 deletions

View file

@ -458,7 +458,9 @@ const app = new Elysia()
<optgroup label={converter}>
{targets.map((target) => (
// biome-ignore lint/correctness/useJsxKeyInIterable: <explanation>
<option value={`${target},${converter}`} safe>{target}</option>
<option value={`${target},${converter}`} safe>
{target}
</option>
))}
</optgroup>
))}
@ -485,7 +487,9 @@ const app = new Elysia()
<optgroup label={converter}>
{targets.map((target) => (
// biome-ignore lint/correctness/useJsxKeyInIterable: <explanation>
<option value={`${target},${converter}`} safe>{target}</option>
<option value={`${target},${converter}`} safe>
{target}
</option>
))}
</optgroup>
),