Skip to content

Commit

Permalink
feat: remove some any
Browse files Browse the repository at this point in the history
  • Loading branch information
EmmanuelDemey committed Nov 9, 2024
1 parent f4f6fd8 commit 0368c5f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/packages/components/advanced-search/home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import { NumberResults } from '../number-results';

type AdvancedSearchListTypes = {
title: string;
data: any;
initializeState?: any;
redirect?: any;
data: unknown[];
initializeState?: unknown;
redirect?: JSX.Element;
};
export const AdvancedSearchList = ({
title,
Expand Down

0 comments on commit 0368c5f

Please sign in to comment.