mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-28 10:33:02 -05:00
🐛 fix plain-text link in simplefin error (#3151)
This commit is contained in:
committed by
GitHub
parent
0eb62a09bc
commit
efd294dcef
@@ -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:
|
||||
}
|
||||
|
||||
@@ -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
|
||||
|
||||
6
upcoming-release-notes/3151.md
Normal file
6
upcoming-release-notes/3151.md
Normal file
@@ -0,0 +1,6 @@
|
||||
---
|
||||
category: Bugfix
|
||||
authors: [MatissJanis]
|
||||
---
|
||||
|
||||
Fix plain-text SimpleFin link in error message.
|
||||
Reference in New Issue
Block a user