1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-04-01 01:18:10 +02:00

refactor: remove unused access overview component (#9527)

https://linear.app/unleash/issue/2-3396/remove-unused-access-overview-component

Removes an unused access overview component.

A nice bonus is that we're adding something called [Access
Overview](https://github.com/Unleash/unleash/pull/9525) so we avoid some
confusion.
This commit is contained in:
Nuno Góis 2025-03-13 09:21:57 +00:00 committed by GitHub
parent 8ab24fd3bf
commit 5ad3178590
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,13 +0,0 @@
import { IconButton } from '@mui/material';
import Download from '@mui/icons-material/Download';
import { useAccessOverviewApi } from 'hooks/api/actions/useAccessOverviewApi/useAccessOverviewApi';
export const AccessOverview = () => {
const { downloadCSV } = useAccessOverviewApi();
return (
<IconButton onClick={downloadCSV}>
<Download />
</IconButton>
);
};