diff --git a/ui/src/components/Forms/PrivateForm.tsx b/ui/src/components/Forms/PrivateForm.tsx index eb50dc1..837f0bc 100644 --- a/ui/src/components/Forms/PrivateForm.tsx +++ b/ui/src/components/Forms/PrivateForm.tsx @@ -27,7 +27,7 @@ interface NetworkIdentity { } export const PrivateForm: React.FC = () => { - const { jsonPayload, setJsonPayload, activeForm, setPayloadMissingFields } = + const { jsonPayload, setJsonPayload, activeForm } = useContext(ApplicationContext); const { t } = useTranslation(); const [message, setMessage] = useState(DEFAULT_MESSAGE_STRING); diff --git a/ui/src/components/Forms/TransferForm.tsx b/ui/src/components/Forms/TransferForm.tsx index c40c5b6..a683670 100644 --- a/ui/src/components/Forms/TransferForm.tsx +++ b/ui/src/components/Forms/TransferForm.tsx @@ -4,11 +4,8 @@ import { FormControl, Grid, InputLabel, - ListItemText, MenuItem, - OutlinedInput, Select, - SelectChangeEvent, TextField, Typography, } from '@mui/material';