Skip to content

Commit

Permalink
disabling tourjs
Browse files Browse the repository at this point in the history
  • Loading branch information
alexjavabraz committed Sep 21, 2023
1 parent 797d147 commit b75d744
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pegin/components/create/PegInForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/pegout/components/PegOutForm.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit b75d744

Please sign in to comment.