diff --git a/packages/web/src/components/DynamicField/index.jsx b/packages/web/src/components/DynamicField/index.jsx index 3f9168eb..19aaad49 100644 --- a/packages/web/src/components/DynamicField/index.jsx +++ b/packages/web/src/components/DynamicField/index.jsx @@ -4,7 +4,6 @@ import { v4 as uuidv4 } from 'uuid'; import { useFormContext, useWatch } from 'react-hook-form'; import Typography from '@mui/material/Typography'; import Stack from '@mui/material/Stack'; -import Box from '@mui/material/Box'; import IconButton from '@mui/material/IconButton'; import RemoveIcon from '@mui/icons-material/Remove'; import AddIcon from '@mui/icons-material/Add'; @@ -78,13 +77,10 @@ function DynamicField(props) { }} > {fields.map((fieldSchema, fieldSchemaIndex) => ( - - + ))} -