@rpg-engine/long-bow 0.3.41 → 0.3.43

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -32786,7 +32786,8 @@ var Chat = function Chat(_ref) {
32786
32786
  autoComplete: "off",
32787
32787
  onFocus: onFocus,
32788
32788
  onBlur: onBlur,
32789
- onTouchStart: onFocus
32789
+ onTouchStart: onFocus,
32790
+ autoFocus: true
32790
32791
  })), React.createElement(Column, {
32791
32792
  justifyContent: "flex-end"
32792
32793
  }, React.createElement(Button$1, {
@@ -35832,8 +35833,7 @@ var TradingItemRow = function TradingItemRow(_ref) {
35832
35833
  };
35833
35834
  var onRightOutClick = function onRightOutClick() {
35834
35835
  var _traderItem$qty2;
35835
- if (selectedQty + 10 < ((_traderItem$qty2 = traderItem.qty) != null ? _traderItem$qty2 : 999)) {
35836
- console.log(traderItem);
35836
+ if (selectedQty + 10 <= ((_traderItem$qty2 = traderItem.qty) != null ? _traderItem$qty2 : 999)) {
35837
35837
  var newQuantity = selectedQty + 10;
35838
35838
  onQuantityChange(traderItem, newQuantity);
35839
35839
  }