[APP-798] add key to ProfileCardPills render method (#1158)
				
					
				
			* add key to `ProfileCardPills` render method * More reliable key generation --------- Co-authored-by: Paul Frazee <pfrazee@gmail.com>
This commit is contained in:
		
							parent
							
								
									94527a4d9e
								
							
						
					
					
						commit
						77178844fd
					
				
					 2 changed files with 17 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -19,6 +19,7 @@ import {makeProfileLink} from 'lib/routes/links'
 | 
			
		|||
import {
 | 
			
		||||
  describeModerationCause,
 | 
			
		||||
  getProfileModerationCauses,
 | 
			
		||||
  getModerationCauseKey,
 | 
			
		||||
} from 'lib/moderation'
 | 
			
		||||
 | 
			
		||||
export const ProfileCard = observer(
 | 
			
		||||
| 
						 | 
				
			
			@ -131,7 +132,9 @@ function ProfileCardPills({
 | 
			
		|||
      {causes.map(cause => {
 | 
			
		||||
        const desc = describeModerationCause(cause, 'account')
 | 
			
		||||
        return (
 | 
			
		||||
          <View style={[s.mt5, pal.btn, styles.pill]}>
 | 
			
		||||
          <View
 | 
			
		||||
            style={[s.mt5, pal.btn, styles.pill]}
 | 
			
		||||
            key={getModerationCauseKey(cause)}>
 | 
			
		||||
            <Text type="xs" style={pal.text}>
 | 
			
		||||
              {cause?.type === 'label' ? '⚠' : ''}
 | 
			
		||||
              {desc.name}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue