diff --git a/src/components/Forms/GuestAccountCreation.vue b/src/components/Forms/GuestAccountCreation.vue
index 65fdd38941..012a27a234 100644
--- a/src/components/Forms/GuestAccountCreation.vue
+++ b/src/components/Forms/GuestAccountCreation.vue
@@ -79,6 +79,14 @@ export default {
type: String,
default: 'create-guest-account'
},
+ eventProperty: {
+ type: String,
+ default: ''
+ },
+ eventValue: {
+ type: Number,
+ default: 0
+ }
},
data() {
return {
@@ -93,7 +101,13 @@ export default {
this.serverError = false;
this.v$.$touch();
if (!this.v$.$invalid) {
- this.$kvTrackEvent(this.eventCategory, 'click', this.eventLabel);
+ this.$kvTrackEvent(
+ this.eventCategory,
+ 'click',
+ this.eventLabel,
+ this.eventProperty,
+ this.eventValue ? this.eventValue : null
+ );
// will end up redirecting to password reset page.
this.apollo.mutate({
diff --git a/src/components/Thanks/MyKiva/OptInModule.vue b/src/components/Thanks/MyKiva/OptInModule.vue
index 89dff51d53..47a46de01f 100644
--- a/src/components/Thanks/MyKiva/OptInModule.vue
+++ b/src/components/Thanks/MyKiva/OptInModule.vue
@@ -28,11 +28,6 @@
{{ badgeFunFact }}{{ badgeFunFactFootnote ? '*' : '' }}
-Create your account @@ -70,8 +78,10 @@
Finish setting up your account to track and relend your money as you are paid back.
Show confirmation
@@ -133,13 +143,19 @@
title="Finish creating your account to see what's next"
@lightbox-closed="showGuestAccountModal = false"
>
-