Skip to content

Commit

Permalink
dont set negative passengers
Browse files Browse the repository at this point in the history
  • Loading branch information
sephina committed May 16, 2024
1 parent d11b357 commit 0396514
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 0396514

Please sign in to comment.