[Glitch] Fix missing interpolation of domain in disabled account banner in web UI

Port a442f481f8 to glitch-soc

Signed-off-by: Claire <claire.github-309c@sitedethib.com>
main^2
Eugen Rochko 2 years ago committed by Claire
parent b6c0ef70a2
commit d29172a682
  1. 2
      app/javascript/flavours/glitch/features/ui/components/disabled_account_banner.js

@ -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>,
}}
/>
) : (

Loading…
Cancel
Save