Skip to content

Commit

Permalink
Fix ts error
Browse files Browse the repository at this point in the history
  • Loading branch information
dmtrKovalenko committed Jan 16, 2020
1 parent d28a981 commit fd6fd39
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/src/views/MobileKeyboardInputView.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ import * as React from 'react';
import makeStyles from '@material-ui/styles/makeStyles';
import KeyboardDateInput from '../_shared/KeyboardDateInput';
import { DateInputProps } from '../_shared/PureDateInput';
import { MobileWrapperProps } from '../wrappers/MobileWrapper';
import { InnerMobileWrapperProps } from '../wrappers/MobileWrapper';

interface MobileKeyboardInputViewProps extends DateInputProps, MobileWrapperProps {}
interface MobileKeyboardInputViewProps extends DateInputProps, Partial<InnerMobileWrapperProps> {}

const useStyles = makeStyles(() => ({
mobileKeyboardView: {
Expand Down

0 comments on commit fd6fd39

Please sign in to comment.