Skip to content
Snippets Groups Projects
Unverified Commit a442f481 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix missing interpolation of domain in disabled account banner in web UI (#19788)

parent 7c65f526
No related branches found
No related tags found
No related merge requests found
......@@ -66,7 +66,7 @@ class DisabledAccountBanner extends React.PureComponent {
defaultMessage='Your account {disabledAccount} is currently disabled because you moved to {movedToAccount}.'
values={{
disabledAccount: disabledAccountLink,
movedToAccount: <Link to={`/@${movedToAcct}`}>{movedToAcct.includes('@') ? movedToAcct : `${movedToAcct}@{domain}`}</Link>,
movedToAccount: <Link to={`/@${movedToAcct}`}>{movedToAcct.includes('@') ? movedToAcct : `${movedToAcct}@${domain}`}</Link>,
}}
/>
) : (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment