Don't show the "message the user" button when the problem is local

This commit is contained in:
Vitor Pamplona 2024-12-31 16:20:53 -05:00
parent a09b8c5862
commit 6ac930c241

View File

@ -366,7 +366,7 @@ fun PayViaIntentDialog(
PayButton(isActive = !paid.value) {
payViaIntent(payable.invoice, context, { paid.value = true }) {
justShowError(UserBasedErrorMessage(it, payable.user))
justShowError(UserBasedErrorMessage(it, null))
}
}
}