[Glitch] Fix limited account hint referencing "your" server when logged out
Port bd9c4ec16d to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
			
			
This commit is contained in:
		
							parent
							
								
									850e8e5f3c
								
							
						
					
					
						commit
						8a2d0a928f
					
				
					 1 changed files with 2 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -4,6 +4,7 @@ import { connect } from 'react-redux';
 | 
			
		|||
import { revealAccount } from 'flavours/glitch/actions/accounts';
 | 
			
		||||
import { FormattedMessage } from 'react-intl';
 | 
			
		||||
import Button from 'flavours/glitch/components/button';
 | 
			
		||||
import { domain } from 'flavours/glitch/initial_state';
 | 
			
		||||
 | 
			
		||||
const mapDispatchToProps = (dispatch, { accountId }) => ({
 | 
			
		||||
 | 
			
		||||
| 
						 | 
				
			
			@ -26,7 +27,7 @@ class LimitedAccountHint extends React.PureComponent {
 | 
			
		|||
 | 
			
		||||
    return (
 | 
			
		||||
      <div className='limited-account-hint'>
 | 
			
		||||
        <p><FormattedMessage id='limited_account_hint.title' defaultMessage='This profile has been hidden by the moderators of your server.' /></p>
 | 
			
		||||
        <p><FormattedMessage id='limited_account_hint.title' defaultMessage='This profile has been hidden by the moderators of {domain}.' values={{ domain }} /></p>
 | 
			
		||||
        <Button onClick={reveal}><FormattedMessage id='limited_account_hint.action' defaultMessage='Show profile anyway' /></Button>
 | 
			
		||||
      </div>
 | 
			
		||||
    );
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
		Reference in a new issue