diff --git a/packages/desktop-client/src/components/accounts/AccountSyncCheck.jsx b/packages/desktop-client/src/components/accounts/AccountSyncCheck.jsx index 9894ae6eaa14febdcac96e0f858f0e915d364842..046f047eb5144e2e16870f90c2ccb03241aa6330 100644 --- a/packages/desktop-client/src/components/accounts/AccountSyncCheck.jsx +++ b/packages/desktop-client/src/components/accounts/AccountSyncCheck.jsx @@ -39,7 +39,15 @@ function getErrorMessage(type, code) { return 'Your SimpleFIN Access Token is no longer valid. Please reset and generate a new token.'; case 'ACCOUNT_NEEDS_ATTENTION': - return 'The account needs your attention at [SimpleFIN](https://beta-bridge.simplefin.org/auth/login).'; + return ( + <> + The account needs your attention at{' '} + <Link variant="external" to="https://bridge.simplefin.org/auth/login"> + SimpleFIN + </Link> + . + </> + ); default: } diff --git a/packages/desktop-client/src/components/modals/SimpleFinInitialise.tsx b/packages/desktop-client/src/components/modals/SimpleFinInitialise.tsx index 1392d38cc49c9a338e57d753808e6efdb24824c5..2e5c356e237491cd1064e92ff2085c6a08fe8180 100644 --- a/packages/desktop-client/src/components/modals/SimpleFinInitialise.tsx +++ b/packages/desktop-client/src/components/modals/SimpleFinInitialise.tsx @@ -60,7 +60,7 @@ export const SimpleFinInitialise = ({ by creating an account with{' '} <Link variant="external" - to="https://beta-bridge.simplefin.org/" + to="https://bridge.simplefin.org/" linkColor="purple" > SimpleFIN diff --git a/upcoming-release-notes/3151.md b/upcoming-release-notes/3151.md new file mode 100644 index 0000000000000000000000000000000000000000..cf03e4b0c607bc56cd4623afc23029d8fe98792e --- /dev/null +++ b/upcoming-release-notes/3151.md @@ -0,0 +1,6 @@ +--- +category: Bugfix +authors: [MatissJanis] +--- + +Fix plain-text SimpleFin link in error message.