@rpg-engine/long-bow 0.8.205 → 0.8.206

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.
@@ -13837,6 +13837,9 @@ var CharacterListingModal = function CharacterListingModal(_ref) {
13837
13837
  var _useState3 = React.useState(false),
13838
13838
  isConfirming = _useState3[0],
13839
13839
  setIsConfirming = _useState3[1];
13840
+ var stopPropagation = React.useCallback(function (e) {
13841
+ e.stopPropagation();
13842
+ }, []);
13840
13843
  if (!isOpen) return null;
13841
13844
  var eligibleCharacters = accountCharacters.filter(function (c) {
13842
13845
  return !c.isListedForSale && !c.tradedAt;
@@ -13860,9 +13863,6 @@ var CharacterListingModal = function CharacterListingModal(_ref) {
13860
13863
  enableHotkeys == null ? void 0 : enableHotkeys();
13861
13864
  onClose();
13862
13865
  };
13863
- var stopPropagation = React.useCallback(function (e) {
13864
- e.stopPropagation();
13865
- }, []);
13866
13866
  var getLevel = function getLevel(c) {
13867
13867
  var _c$skills;
13868
13868
  return ((_c$skills = c.skills) == null ? void 0 : _c$skills.level) || 1;