Skip to content

Commit

Permalink
chore: rm proptypes for DownloadDats component
Browse files Browse the repository at this point in the history
this is more narrowly specified by the TypeScript prop type anyway.
  • Loading branch information
davidlougheed committed Sep 25, 2024
1 parent c66796f commit a4a85a2
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions src/js/components/Provenance/DownloadDats.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { useCallback } from 'react';
import PropTypes from 'prop-types';
import { Button, Space } from 'antd';
import { DownloadOutlined } from '@ant-design/icons';

Expand All @@ -25,8 +24,4 @@ const DownloadDats = ({ metadata }: { metadata: ProvenanceStoreDataset }) => {
);
};

DownloadDats.propTypes = {
metadata: PropTypes.object.isRequired,
};

export default DownloadDats;

0 comments on commit a4a85a2

Please sign in to comment.