EqualltyChoiceBottomSheet: enhance styles

This commit is contained in:
2025-12-04 23:04:03 +03:00
parent f9ea67ed3b
commit fc8e274f58
3 changed files with 70 additions and 79 deletions

View File

@@ -8,10 +8,10 @@ export default function TotalPeopleActions() {
return (
<ActionsButtons
quantity={tmp?.totalPeople || 1}
quantity={tmp?.totalPeople || 2}
setQuantity={(value) => dispatch(setTmp({ ...tmp, totalPeople: value }))}
max={10}
min={1}
min={2}
/>
);
}