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,5 +1,4 @@
import EventDataForm from 'components/metrics/EventDataForm';
import PropTypes from 'prop-types';
import { useState } from 'react';
import { Button, Icon, Modal, Icons } from 'react-basics';
import { FormattedMessage } from 'react-intl';
@ -44,8 +43,4 @@ function EventDataButton({ websiteId }) {
);
}
EventDataButton.propTypes = {
websiteId: PropTypes.oneOfType([PropTypes.string, PropTypes.number]),
};
export default EventDataButton;