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