Skip to content

Commit

Permalink
fix(Modal): fix typescript intellisense with base props (#6150)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyletsang committed Dec 16, 2021
1 parent 253c998 commit a7db500
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Modal.tsx
Expand Up @@ -12,7 +12,7 @@ import transitionEnd from 'dom-helpers/transitionEnd';
import PropTypes from 'prop-types';
import * as React from 'react';
import { useCallback, useMemo, useRef, useState } from 'react';
import BaseModal, { ModalProps as BaseModalProps } from '@restart/ui/Modal';
import BaseModal, { BaseModalProps } from '@restart/ui/Modal';
import { ModalInstance } from '@restart/ui/ModalManager';
import { getSharedManager } from './BootstrapModalManager';
import Fade from './Fade';
Expand Down

0 comments on commit a7db500

Please sign in to comment.