Fix ESLint issues
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2025-05-31 09:45:23 +02:00
parent 0279907ca9
commit 5518b45219
2 changed files with 5 additions and 5 deletions

View File

@ -18,7 +18,7 @@ export function DiskBusSelect(p: {
{ label: "virtio", value: "Virtio" },
{ label: "sata", value: "SATA" },
]}
onValueChange={(v) => p.onValueChange(v as any)}
onValueChange={(v) => { p.onValueChange(v as any); }}
/>
);
}