Skip to content

Commit

Permalink
fix(website): fix call back buttons links
Browse files Browse the repository at this point in the history
  • Loading branch information
aymericzip committed Jul 8, 2024
1 parent e18e6e0 commit 745f439
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const ActionButtons: FC = () => {
<Button
label={secondaryLabel.value}
variant="outline"
onClick={() => router.push(primaryUrl.value)}
onClick={() => router.push(secondaryLabel.value)}
size="lg"
color="text"
className="w-full md:w-auto"
Expand All @@ -34,7 +34,7 @@ export const ActionButtons: FC = () => {
</Button>
<Button
label={primaryLabel.value}
onClick={() => router.push(secondaryUrl.value)}
onClick={() => router.push(primaryLabel.value)}
variant="default"
size="lg"
color="text"
Expand Down

0 comments on commit 745f439

Please sign in to comment.