diff --git a/static/js/index.js b/static/js/index.js index fcf5b48..2eaaa79 100644 --- a/static/js/index.js +++ b/static/js/index.js @@ -1088,8 +1088,8 @@ window.app = Vue.createApp({ this.receivableDialog.currency = null }, showSettleReceivableDialog(userBalance) { - // Only show for users who owe castle (negative balance) - if (userBalance.balance >= 0) return + // Only show for users who owe castle (positive balance = receivable) + if (userBalance.balance <= 0) return // Clear any existing polling if (this.settleReceivableDialog.pollIntervalId) {