Skip to content

Commit

Permalink
Merge pull request #825 from Autofleet/aut-19879-negative-passengers
Browse files Browse the repository at this point in the history
dont set negative passengers
  • Loading branch information
sephina authored May 21, 2024
2 parents d11b357 + 0396514 commit ac1c65d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -612,7 +612,7 @@ const RidePageContextProvider = ({ children }: {
}, [businessAccountId]);

useEffect(() => {
setNumberOfPassengers(-1);
setNumberOfPassengers(1);
}, [chosenService]);

useEffect(() => {
Expand Down

0 comments on commit ac1c65d

Please sign in to comment.