Fix ESLint issues

This commit is contained in:
2025-05-15 19:42:38 +02:00
parent 0f6447155b
commit 7b6072c660
3 changed files with 9 additions and 9 deletions

View File

@ -34,7 +34,7 @@ export function AttachMultipleInboxEntriesDialog(p: {
<DialogContent>
{p.entries.map((entry, num) => {
return (
<div>
<div key={entry.id}>
<div
style={{
padding: "5px",
@ -53,13 +53,13 @@ export function AttachMultipleInboxEntriesDialog(p: {
<MovementSelect
list={p.movements[num]}
value={mapping[num]}
onChange={(v) =>
onChange={(v) => {
setMapping((m) => {
const n = [...m];
n[num] = v;
return n;
})
}
});
}}
/>
) : (
<>No movement found</>