From c969c536bf821ab554149919e967c130dd873765 Mon Sep 17 00:00:00 2001 From: Jose Olarte III Date: Mon, 11 Aug 2025 17:50:25 +0800 Subject: [PATCH] Fix: notify getting called before it's initialized - Initialize notify earlier inside created() --- src/views/ClaimView.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/ClaimView.vue b/src/views/ClaimView.vue index 51b18573..f594dc9b 100644 --- a/src/views/ClaimView.vue +++ b/src/views/ClaimView.vue @@ -724,6 +724,8 @@ export default class ClaimView extends Vue { } async created() { + this.notify = createNotifyHelpers(this.$notify); + const settings = await this.$accountSettings(); this.activeDid = settings.activeDid || ""; @@ -754,8 +756,6 @@ export default class ClaimView extends Vue { this.windowDeepLink = `${APP_SERVER}/deep-link/claim/${claimId}`; this.canShare = !!navigator.share; - - this.notify = createNotifyHelpers(this.$notify); } // insert a space before any capital letters except the initial letter