Skip to content
This repository has been archived by the owner on Jan 2, 2025. It is now read-only.

Commit

Permalink
fix(desktop): remove animations from onboarding
Browse files Browse the repository at this point in the history
  • Loading branch information
horacioh committed Oct 19, 2023
1 parent 715dd43 commit 6f2423a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/packages/app/pages/onboarding.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export function OnboardingSteps() {
const enterVariant = direction == 1 ? 'isRight' : 'isLeft'
const exitVariant = direction === 1 ? 'isLeft' : 'isRight'
return (
<AnimatePresence enterVariant={enterVariant} exitVariant={exitVariant}>
<>
{obValue.state.key == 'welcome' && (
<Welcome key={obValue.state.key} {...obValue} />
)}
Expand All @@ -79,7 +79,7 @@ export function OnboardingSteps() {
{obValue.state.key == 'device complete' && (
<Complete key={obValue.state.key} />
)}
</AnimatePresence>
</>
)
}

Expand Down

0 comments on commit 6f2423a

Please sign in to comment.