Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
malted committed Nov 14, 2024
1 parent 12539f3 commit 9a56113
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/harbor/tabs/tour.ts
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ let hasSetUp = false
export function tour() {
safePerson().then(({ hasCompletedTutorial }) => {
console.log('Setting tutorial sessionstorage to', hasCompletedTutorial)
sessionStorage.setItem('tutorial', hasCompletedTutorial.toString())
sessionStorage.setItem('tutorial', (!hasCompletedTutorial).toString())
})

const currentStepId = getCookie('tour-step')
Expand Down

0 comments on commit 9a56113

Please sign in to comment.