Skip to content

Commit

Permalink
fix useCallback deps
Browse files Browse the repository at this point in the history
  • Loading branch information
testower committed Oct 30, 2023
1 parent b22af98 commit 997f932
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion client-next/src/components/SearchBar/TransitModeSelect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export function TransitModeSelect({
});
}
},
[tripQueryVariables.modes, setTripQueryVariables],
[tripQueryVariables, setTripQueryVariables],
);

return (
Expand Down

0 comments on commit 997f932

Please sign in to comment.