Removed prop-types.

This commit is contained in:
Mike Cao 2023-02-10 03:37:06 -08:00
parent c815e7cd51
commit d4437427c4
9 changed files with 11 additions and 41 deletions

View file

@ -1,4 +1,3 @@
import PropTypes from 'prop-types';
import { useCallback, useEffect, useRef, useState } from 'react';
import ReactTooltip from 'react-tooltip';
@ -58,9 +57,4 @@ const OverflowText = ({ children, tooltipId }) => {
);
};
OverflowText.propTypes = {
children: PropTypes.oneOfType([PropTypes.number, PropTypes.string]).isRequired,
tooltipId: PropTypes.string.isRequired,
};
export default OverflowText;