diff --git a/pages/authorize-contribution.vue b/pages/authorize-contribution.vue index 6448073..1e98493 100644 --- a/pages/authorize-contribution.vue +++ b/pages/authorize-contribution.vue @@ -27,7 +27,7 @@ target="_blank" outlined > - Tweet about your contribution + Post attestation
@@ -90,7 +90,7 @@ export default { body: JSON.stringify(body) }) if (response.ok) { - this.status.msg = `Your contribution is verified and authorized. Thank you.` + this.status.msg = `Your contribution authorized. Now you can post attestation from your twitter account.` this.status.type = 'is-success' this.hideSaveBtn = true } else { diff --git a/pages/make-contribution.vue b/pages/make-contribution.vue index 322434f..99ac3d3 100644 --- a/pages/make-contribution.vue +++ b/pages/make-contribution.vue @@ -49,7 +49,7 @@ target="_blank" outlined > - Tweet about your contribution + Post attestation

@@ -160,7 +160,8 @@ export default { body: formData }) if (resp.ok) { - this.status.msg = 'Your contribution is verified and recorded. Thank you.' + this.status.msg = + 'Your contribution is verified and recorded. Now you can post attestation from your twitter account.' this.status.type = 'is-success' const responseData = await resp.json() this.$store.commit('user/SET_CONTRIBUTION_INDEX', responseData.contributionIndex)