diff --git a/src/components/AMPLWarning/index.tsx b/src/components/AMPLWarning/index.tsx index 5332a277f..cd1a46ef2 100644 --- a/src/components/AMPLWarning/index.tsx +++ b/src/components/AMPLWarning/index.tsx @@ -21,7 +21,7 @@ export default function AMPLWarning({ withInfoPanel }: AMPLWarningProps) {
{intl.formatMessage(messages.amplWarning, { asset: Ampleforth, - link: ( + link1: ( ), + link2: ( + + {intl.formatMessage(messages.amplFaq)} + + ), })} diff --git a/src/components/AMPLWarning/messages.ts b/src/components/AMPLWarning/messages.ts index 6e5cfdc46..de77b06a8 100644 --- a/src/components/AMPLWarning/messages.ts +++ b/src/components/AMPLWarning/messages.ts @@ -1,6 +1,8 @@ import { defineMessages } from 'react-intl'; export default defineMessages({ - amplWarning: '{asset} is an asset affected by rebasing. Visit the {link} to learn more.', + amplWarning: + '{asset} is an asset affected by rebasing. Visit the {link1} or {link2} to learn more.', documentation: 'documentation', + amplFaq: "Ampleforth's FAQ", });