diff --git a/src/components/KeyValueInput.tsx b/src/components/KeyValueInput.tsx index cb6b7c3c..da043790 100644 --- a/src/components/KeyValueInput.tsx +++ b/src/components/KeyValueInput.tsx @@ -6,7 +6,6 @@ import { FormGroup, Stack, TextField, - ButtonGroup, Button, } from "@mui/material"; import AddIcon from "@mui/icons-material/Add"; @@ -67,13 +66,14 @@ export default function KeyValueInput({ }); return ( - + {label} + {value.map(([propKey, propValue], i) => ( - - - + ))} -
- -
+ +
); }