diff --git a/frontend/app/components/Dashboard/components/FunnelIssuesSort/FunnelIssuesSort.tsx b/frontend/app/components/Dashboard/components/FunnelIssuesSort/FunnelIssuesSort.tsx index b3ab876d4..782be0eb3 100644 --- a/frontend/app/components/Dashboard/components/FunnelIssuesSort/FunnelIssuesSort.tsx +++ b/frontend/app/components/Dashboard/components/FunnelIssuesSort/FunnelIssuesSort.tsx @@ -9,12 +9,19 @@ const sortOptions = [ { value: 'lostConversions-desc', label: 'Lost Conversions (High)' }, { value: 'lostConversions-asc', label: 'Lost Conversions (Low)' }, ] -function FunnelIssuesSort(props) { + +interface Props { + onChange?: (value: string) => void; +} +function FunnelIssuesSort(props: Props) { return (
);