diff --git a/src/pegin/components/create/PegInForm.vue b/src/pegin/components/create/PegInForm.vue index 3086fc2e..27854aed 100644 --- a/src/pegin/components/create/PegInForm.vue +++ b/src/pegin/components/create/PegInForm.vue @@ -318,7 +318,7 @@ export default class PegInForm extends Vue { } mounted() { - const newUser = localStorage.getItem('ONBOARDED_USER_PEGIN') !== 'true'; + const newUser = false; // localStorage.getItem('ONBOARDED_USER_PEGIN') !== 'true'; if (newUser) { this.$tours.pegInTour.start(); this.isTourActive = true; diff --git a/src/pegout/components/PegOutForm.vue b/src/pegout/components/PegOutForm.vue index d8102505..7c9d9c39 100644 --- a/src/pegout/components/PegOutForm.vue +++ b/src/pegout/components/PegOutForm.vue @@ -385,7 +385,7 @@ export default class PegOutForm extends Vue { } mounted() { - const newUser = localStorage.getItem('ONBOARDED_USER_PEGOUT') !== 'true'; + const newUser = false; // localStorage.getItem('ONBOARDED_USER_PEGOUT') !== 'true'; if (newUser) { this.$tours.pegOutTour.start(); this.isTourActive = true;