Merged in fix/sas-link-flow-links (pull request #1389)

Set correct links in SAS link flow

Approved-by: Joakim Jäderberg
This commit is contained in:
Anton Gunnarsson
2025-02-21 12:26:38 +00:00
parent 15dbeb9d46
commit 204bbbbcd4
3 changed files with 24 additions and 9 deletions

View File

@@ -2,15 +2,19 @@
import Link from "next/link"
import { useIntl } from "react-intl"
import { scandicXSAS } from "@/constants/routes/myPages"
import ErrorCircleFilledIcon from "@/components/Icons/ErrorCircleFilled"
import Button from "@/components/TempDesignSystem/Button"
import Body from "@/components/TempDesignSystem/Text/Body"
import Title from "@/components/TempDesignSystem/Text/Title"
import useLang from "@/hooks/useLang"
import { SASModal, SASModalContactBlock, SASModalDivider } from "./SASModal"
export function AlreadyLinkedError() {
const intl = useIntl()
const lang = useLang()
return (
<SASModal>
@@ -24,9 +28,10 @@ export function AlreadyLinkedError() {
id: "We could not connect your accounts to give you access. Please contact us and well help you resolve this issue.",
})}
</Body>
{/* TODO link to SASxScandic page on My Pages */}
<Button theme="base" asChild>
<Link href="#">{intl.formatMessage({ id: "View your account" })}</Link>
<Link href={scandicXSAS[lang]}>
{intl.formatMessage({ id: "View your account" })}
</Link>
</Button>
<SASModalDivider />
<SASModalContactBlock />