From d5db39878c0592f60f7253635f785820d7cac621 Mon Sep 17 00:00:00 2001 From: Matthew Raymer Date: Fri, 8 Aug 2025 07:17:38 +0000 Subject: [PATCH] Remove debug code from ShareMyContactInfoView - Remove debug logging and window.__SHARE_CONTACT_DEBUG__ property - Clean up eslint-disable comments and console.log statements - Simplify mounted() method to focus on core functionality --- src/views/ShareMyContactInfoView.vue | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/views/ShareMyContactInfoView.vue b/src/views/ShareMyContactInfoView.vue index 93a39f0c..2316b1d2 100644 --- a/src/views/ShareMyContactInfoView.vue +++ b/src/views/ShareMyContactInfoView.vue @@ -75,15 +75,9 @@ export default class ShareMyContactInfoView extends Vue { isLoading = false; async mounted() { - // Debug logging for test diagnosis const settings = await this.$settings(); - const activeDid = settings?.activeDid; - // @ts-expect-error - Debug property for testing contact sharing functionality - window.__SHARE_CONTACT_DEBUG__ = { settings, activeDid }; - // eslint-disable-next-line no-console if (!activeDid) { - // eslint-disable-next-line no-console this.$router.push({ name: "home" }); } }