diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue index 24df1d2a..9cb84878 100644 --- a/src/views/HomeView.vue +++ b/src/views/HomeView.vue @@ -473,7 +473,7 @@ export default class HomeView extends Vue { await this.initializeIdentity(); await this.loadSettings(); await this.loadContacts(); - await this.checkRegistrationStatus(); + // Registration check already handled in initializeIdentity() await this.loadFeedData(); await this.loadNewOffers(); await this.checkOnboarding(); @@ -602,10 +602,14 @@ export default class HomeView extends Vue { this.isRegistered = true; } } catch (error) { - this.$logAndConsole( - `[HomeView] Registration check failed: ${error}`, - true, - ); + // Consolidate logging: Only log unexpected errors, not expected 400s + const axiosError = error as any; + if (axiosError?.response?.status !== 400) { + this.$logAndConsole( + `[HomeView] Registration check failed: ${error}`, + true, + ); + } // Continue as unregistered - this is expected for new users } }