Skip to content

Commit

Permalink
update onboarding component with new funcion signatures
Browse files Browse the repository at this point in the history
  • Loading branch information
diegoalzate committed Jun 21, 2024
1 parent 1456a2e commit 675bd9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/berlin/src/pages/Onboarding.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ function Onboarding() {
<FlexColumn $gap="3rem">
<Subtitle>{data[step].title}</Subtitle>
<BodyContent content={data[step].body} />
<Dots dots={data.length} activeDotIndex={step} setStep={setStep} />
<Dots dots={data.length} activeDotIndex={step} handleClick={(i) => setStep(i)} />
<FlexRow>
<Button onClick={handleSkip} $color="secondary">
Skip
Expand Down

0 comments on commit 675bd9e

Please sign in to comment.