diff --git a/src/services/platforms/WebPlatformService.ts b/src/services/platforms/WebPlatformService.ts index 28ccdaf9..7ec13c01 100644 --- a/src/services/platforms/WebPlatformService.ts +++ b/src/services/platforms/WebPlatformService.ts @@ -693,7 +693,11 @@ export class WebPlatformService implements PlatformService { const setClause = keys.map((key) => `${key} = ?`).join(", "); const sql = `UPDATE settings SET ${setClause} WHERE accountDid = ?`; const params = [...keys.map((key) => settings[key]), did]; - console.log("[WebPlatformService] updateDidSpecificSettings", sql, JSON.stringify(params, null, 2)); + console.log( + "[WebPlatformService] updateDidSpecificSettings", + sql, + JSON.stringify(params, null, 2), + ); await this.dbExec(sql, params); } diff --git a/src/utils/PlatformServiceMixin.ts b/src/utils/PlatformServiceMixin.ts index 86f21ede..1a2704a2 100644 --- a/src/utils/PlatformServiceMixin.ts +++ b/src/utils/PlatformServiceMixin.ts @@ -707,7 +707,10 @@ export const PlatformServiceMixin = { // Merge with any provided defaults (these take highest precedence) const finalSettings = { ...mergedSettings, ...defaults }; - console.log("[PlatformServiceMixin] $accountSettings", JSON.stringify(finalSettings, null, 2)); + console.log( + "[PlatformServiceMixin] $accountSettings", + JSON.stringify(finalSettings, null, 2), + ); return finalSettings; } catch (error) { logger.error( diff --git a/src/views/AccountViewView.vue b/src/views/AccountViewView.vue index 45ca74cc..ef45b42c 100644 --- a/src/views/AccountViewView.vue +++ b/src/views/AccountViewView.vue @@ -143,9 +143,7 @@ - +
{ - console.log("[ContactsView] handleRegistrationPrompt", this.isRegistered, this.hideRegisterPromptOnNewContact, newContact.registered); if ( this.isRegistered === false || // the current Identity is not registered OR this.hideRegisterPromptOnNewContact === true || // the user has hidden the registrationprompt OR newContact.registered === true // the new contact is already registered ) { // if any of the above are true, we do not want to show the registration prompt - console.log("[ContactsView] handleRegistrationPrompt we do not want to show the registration prompt"); return; } setTimeout(() => { - console.log("[ContactsView] handleRegistrationPrompt setTimeout"); this.$notify( { group: "modal", @@ -848,22 +845,18 @@ export default class ContactsView extends Vue { title: "Register", text: "Do you want to register them?", onCancel: async (stopAsking?: boolean) => { - console.log("[ContactsView] handleRegistrationPrompt onCancel", stopAsking); await this.handleRegistrationPromptResponse(stopAsking); }, onNo: async (stopAsking?: boolean) => { - console.log("[ContactsView] handleRegistrationPrompt onNo", stopAsking); await this.handleRegistrationPromptResponse(stopAsking); }, onYes: async () => { - console.log("[ContactsView] handleRegistrationPrompt onYes"); await this.register(newContact); }, promptToStopAsking: true, }, -1, ); - console.log("[ContactsView] handleRegistrationPrompt setTimeout done"); }, 1000); } @@ -1254,17 +1247,14 @@ export default class ContactsView extends Vue { */ public handleQRCodeClick() { - console.log("[ContactsView] handleQRCodeClick method called"); this.$logAndConsole( "[ContactsView] handleQRCodeClick method called", false, ); if (Capacitor.isNativePlatform()) { - console.log("[ContactsView] Navigating to contact-qr-scan-full"); this.$router.push({ name: "contact-qr-scan-full" }); } else { - console.log("[ContactsView] Navigating to contact-qr"); this.$router.push({ name: "contact-qr" }); } } diff --git a/src/views/DIDView.vue b/src/views/DIDView.vue index 41d36eee..81d3f083 100644 --- a/src/views/DIDView.vue +++ b/src/views/DIDView.vue @@ -758,7 +758,6 @@ export default class DIDView extends Vue { if (resp.status === 200) { const visibility = resp.data; contact.seesMe = visibility; - //console.log("Visi check:", visibility, contact.seesMe, contact.did); await this.$updateContact(contact.did, { seesMe: visibility }); const message = diff --git a/src/views/GiftedDetailsView.vue b/src/views/GiftedDetailsView.vue index 1aebdba6..8d122076 100644 --- a/src/views/GiftedDetailsView.vue +++ b/src/views/GiftedDetailsView.vue @@ -490,7 +490,6 @@ export default class GiftedDetails extends Vue { this.showGeneralAdvanced = !!settings.showGeneralAdvanced; if (this.fulfillsProjectId) { - // console.log("Getting project name from cache", this.fulfillsProjectId); const fulfillsProject = await getPlanFromCache( this.fulfillsProjectId, this.axios, @@ -502,7 +501,6 @@ export default class GiftedDetails extends Vue { : "a project"; } if (this.providerProjectId) { - // console.log("Getting project name from cache", this.providerProjectId); const providerProject = await getPlanFromCache( this.providerProjectId, this.axios, diff --git a/src/views/HelpNotificationsView.vue b/src/views/HelpNotificationsView.vue index 6d773a1c..81f45f1f 100644 --- a/src/views/HelpNotificationsView.vue +++ b/src/views/HelpNotificationsView.vue @@ -454,10 +454,6 @@ export default class HelpNotificationsView extends Vue { * Useful for troubleshooting push notification issues and verifying subscription status. */ alertWebPushSubscription() { - // console.log( - // "Web push subscription:", - // JSON.parse(JSON.stringify(this.subscriptionJSON)), // gives more info than plain console logging - // ); alert(JSON.stringify(this.subscriptionJSON)); } diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue index 34cd1a60..93c4473d 100644 --- a/src/views/HomeView.vue +++ b/src/views/HomeView.vue @@ -9,7 +9,11 @@ Raymer * @version 1.0.0 */ -
+

{{ AppString.APP_NAME }} {{ package.version }} diff --git a/src/views/ImportAccountView.vue b/src/views/ImportAccountView.vue index 3f9cbc77..3c87e681 100644 --- a/src/views/ImportAccountView.vue +++ b/src/views/ImportAccountView.vue @@ -189,7 +189,6 @@ export default class ImportAccountView extends Vue { * Uses importFromMnemonic utility for secure import */ public async onImportClick() { - console.log("[ImportAccountView] onImportClick", this.mnemonic); if (!this.mnemonic?.trim()) { this.notify.warning( "Seed phrase is required to import an account.", @@ -207,7 +206,6 @@ export default class ImportAccountView extends Vue { // Check what was actually imported const settings = await this.$accountSettings(); - console.log("[ImportAccountView] settings", JSON.stringify(settings, null, 2)); // Check account-specific settings if (settings?.activeDid) { diff --git a/src/views/ShareMyContactInfoView.vue b/src/views/ShareMyContactInfoView.vue index f6eee342..93a39f0c 100644 --- a/src/views/ShareMyContactInfoView.vue +++ b/src/views/ShareMyContactInfoView.vue @@ -82,10 +82,8 @@ export default class ShareMyContactInfoView extends Vue { // @ts-expect-error - Debug property for testing contact sharing functionality window.__SHARE_CONTACT_DEBUG__ = { settings, activeDid }; // eslint-disable-next-line no-console - console.log("[ShareMyContactInfoView] mounted", { settings, activeDid }); if (!activeDid) { // eslint-disable-next-line no-console - console.log("[ShareMyContactInfoView] No activeDid, redirecting to root"); this.$router.push({ name: "home" }); } } diff --git a/test-playwright/60-new-activity.spec.ts b/test-playwright/60-new-activity.spec.ts index 136ff5d0..8c1503bc 100644 --- a/test-playwright/60-new-activity.spec.ts +++ b/test-playwright/60-new-activity.spec.ts @@ -7,7 +7,6 @@ test('New offers for another user', async ({ page }) => { // Get the auto-created DID from the HomeView await page.waitForLoadState('networkidle'); const autoCreatedDid = await page.getAttribute('#Content', 'data-active-did'); - console.log("[New offers for another user] Auto-created DID:", autoCreatedDid); if (!autoCreatedDid) { throw new Error('Auto-created DID not found in HomeView');