build(deps): update latest

This commit is contained in:
Divlo
2022-09-21 10:09:36 +02:00
parent 5d350e8db9
commit ccaf5234ed
7 changed files with 1314 additions and 1225 deletions

View File

@ -23,12 +23,12 @@ export const CreateGuild: React.FC = () => {
const { t } = useTranslation()
const router = useRouter()
const { handleUseForm, fetchState, message, errors } = useForm(schema as any)
const { handleUseForm, fetchState, message, errors } = useForm(schema)
const { getFirstErrorTranslation } = useFormTranslation()
const { authentication } = useAuthentication()
const onSubmit: HandleUseFormCallback<any> = async (formData) => {
const onSubmit: HandleUseFormCallback<typeof schema> = async (formData) => {
try {
const { data } = await authentication.api.post<
any,