Skip to content

Commit

Permalink
Fix(List.tsx): remove unused variable
Browse files Browse the repository at this point in the history
  • Loading branch information
polegkashti committed Oct 26, 2024
1 parent 4b97405 commit d447acf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/components/ACLPage/List/List.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ import * as S from './List.styled';

const ACList: React.FC = () => {
const { clusterName } = useAppParams<{ clusterName: ClusterName }>();
const [searchParams, setSearchParams] = useSearchParams();
const [searchParams] = useSearchParams();
const [search, setSearch] = useState(searchParams.get('q') || '');
const { data: aclList } = useAcls({ clusterName, search });
const { deleteResource } = useDeleteAcl(clusterName);
Expand Down

0 comments on commit d447acf

Please sign in to comment.