Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add conditional for buttons in hero based on language #11137

Merged
merged 2 commits into from
Sep 13, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
56 changes: 35 additions & 21 deletions src/pages-conditional/wallets.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -194,27 +194,41 @@ const WalletsPage = ({
subtitle: t("page-wallets-subtitle"),
image: getImage(data.hero)!,
alt: t("page-wallets-alt"),
buttons: [
{
to: "/wallets/find-wallet/",
content: t("page-wallets-find-wallet-link"),
matomo: {
eventCategory: "wallet hero buttons",
eventAction: "click",
eventName: "find wallet",
},
},
{
to: `#${SIMULATOR_ID}`,
content: "Interactive tutorial",
matomo: {
eventCategory: "wallet hero buttons",
eventAction: "click",
eventName: "interactive tutorial",
},
variant: "outline",
},
],
// TODO: remove conditional after soft launch
buttons:
language === "en"
? [
{
to: "/wallets/find-wallet/",
content: t("page-wallets-find-wallet-link"),
matomo: {
eventCategory: "wallet hero buttons",
eventAction: "click",
eventName: "find wallet",
},
},
{
to: `#${SIMULATOR_ID}`,
content: "Interactive tutorial",
matomo: {
eventCategory: "wallet hero buttons",
eventAction: "click",
eventName: "interactive tutorial",
},
variant: "outline",
},
]
: [
{
to: "/wallets/find-wallet/",
content: t("page-wallets-find-wallet-link"),
matomo: {
eventCategory: "wallet hero buttons",
eventAction: "click",
eventName: "find wallet",
},
},
],
}

return (
Expand Down
Loading