Fix app build

This commit is contained in:
Nathan Bierema 2022-01-10 00:45:40 -05:00
parent b9d21bcfd5
commit 9ca7b60b73

View File

@ -8,7 +8,7 @@ import {
} from 'json-schema'; } from 'json-schema';
import { ConnectionType, saveSocketSettings } from '../../actions'; import { ConnectionType, saveSocketSettings } from '../../actions';
import { StoreState } from '../../reducers'; import { StoreState } from '../../reducers';
import { ConnectionOptions } from '../../reducers/connection'; import { ConnectionStateOptions } from '../../reducers/connection';
import { IChangeEvent, ISubmitEvent } from '@rjsf/core'; import { IChangeEvent, ISubmitEvent } from '@rjsf/core';
declare module 'json-schema' { declare module 'json-schema' {
@ -57,7 +57,7 @@ type StateProps = ReturnType<typeof mapStateToProps>;
type DispatchProps = ResolveThunks<typeof actionCreators>; type DispatchProps = ResolveThunks<typeof actionCreators>;
type Props = StateProps & DispatchProps; type Props = StateProps & DispatchProps;
interface FormData extends ConnectionOptions { interface FormData extends ConnectionStateOptions {
readonly type: ConnectionType; readonly type: ConnectionType;
} }