fix ui tour routing

This commit is contained in:
tjs 2022-09-14 11:02:10 -04:00
parent 4270ad8d3b
commit b2e274938b
1 changed files with 7 additions and 3 deletions

View File

@ -89,6 +89,10 @@ const OnboardingTour = () => {
'The value of your assets (deposits) minus the value of your liabilities (borrows).',
orientationPreferences: [CardinalOrientation.EASTNORTH],
movingTarget: true,
customNextFunc: (tourLogic: WalktourLogic) => {
router.push('/')
setTimeout(() => tourLogic.next(), 1000)
},
},
{
selector: '#step-three',
@ -122,18 +126,18 @@ const OnboardingTour = () => {
orientationPreferences: [CardinalOrientation.EASTSOUTH],
movingTarget: true,
customNextFunc: (tourLogic: WalktourLogic) => {
router.push('/trade')
router.push('/swap')
setTimeout(() => tourLogic.next(), 1000)
},
},
{
selector: '#step-seven',
title: 'Trade',
title: 'Swap',
description:
"You choose the quote token of your trades. This means you can easily trade tokens on their relative strength vs. another token. Let's say your thesis is BTC will see diminishing returns relative to SOL. You can sell BTC and buy SOL. Now you are long SOL/BTC",
orientationPreferences: [CardinalOrientation.CENTER],
customPrevFunc: (tourLogic: WalktourLogic) => {
router.push('/')
router.push('/swap')
tourLogic.prev()
},
},