Skip to content

Commit 5cc4cec

Browse files
committed
fix: updated parameter types to be more specific
1 parent 8a926da commit 5cc4cec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/frontend/src/components/FinanceDashboardCarFilter.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ const FinanceDashboardCarFilterComponent: React.FC<FinanceDashboardCarFilterProp
7979

8080
const carAutocompleteOptions = [ALL_CARS_OPTION, ...carOptions];
8181

82-
const handleCarChange = (_event: any, newValue: any) => {
82+
const handleCarChange = (_event: React.SyntheticEvent, newValue: { label: string; id: string } | null) => {
8383
if (newValue === null) {
8484
// User cleared the input (X button), re-mirror global
8585
clearLocalSelection();

0 commit comments

Comments
 (0)