We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 708b7a3 commit c2591caCopy full SHA for c2591ca
src/views/Acc.vue
@@ -100,7 +100,8 @@ export default {
100
this.$router.push('/safe')
101
return
102
}
103
- this.showError()
+
104
+ this.showBlockedError()
105
})
106
.then(() => {
107
this.account = ''
@@ -109,6 +110,16 @@ export default {
109
110
111
112
},
113
+ showBlockedError() {
114
+ return this.$ionic.alertController
115
+ .create({
116
+ header: 'Request blocked',
117
+ message:
118
+ 'Your request was blocked by the <a href="https://haveibeenpwned.com/" target="_blank">API service provider</a>',
119
+ buttons: ['OK'],
120
+ })
121
+ .then(e => e.present())
122
+ },
123
showError() {
124
return this.$ionic.alertController
125
.create({
0 commit comments