chore(deps): update typescript-eslint monorepo to v5.13.0 (#45294)

Co-authored-by: Renovate Bot <bot@renovateapp.com>
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
This commit is contained in:
renovate[bot]
2022-03-02 11:00:55 +01:00
committed by GitHub
parent 173549df47
commit bec2deb3c0
3 changed files with 84 additions and 84 deletions

View File

@@ -1,4 +1,4 @@
import React from 'react';
import React, { FormEvent } from 'react';
import { Form } from 'react-final-form';
import {
@@ -50,7 +50,7 @@ function DynamicForm({
{({ handleSubmit, pristine, error }) => (
<form
id={`dynamic-${id}`}
onSubmit={handleSubmit}
onSubmit={handleSubmit as (e: FormEvent) => void}
style={{ width: '100%' }}
>
<FormFields formFields={formFields} options={options} />