I've been working on an inventory app, and I've encountered a small item I need help tweaking.

The quantity box Stays blank until you start using the arrows, then it starts at 0 and counts up or down. The save button will only submit what the up or down buttons have input. So if i push up 4 times, the number in the box would be 4, but if I type 9 then hit save, 4 is what would be saved. My code is below.
Quantity Text Box= Default : currentQuantityValue
Up Arrow= OnSelect: UpdateContext({currentQuantityValue:currentQuantityValue+1})
Down Arrow= Onselect: UpdateContext({currentQuantityValue:currentQuantityValue-1})
Save Button= OnSelect:
Patch(PadPartsList, Gallery1_1.Selected, {Quantity:currentQuantityValue});
ResetForm(Form1_1);
Navigate(EPList)
Form Text Box:



Any Tips would be greatly appreciated. I'm sure It's something about how I have the variable assigned or something. But I'm stumped at the moment.