Remove unused noFade param

This commit is contained in:
Jackson Harper 2023-03-03 19:26:06 +08:00
parent a53925edf9
commit e6bfaa4500
3 changed files with 0 additions and 3 deletions

View file

@ -6,7 +6,6 @@ type AvatarProps = {
height: string
fallbackText: string
tooltip?: string
noFade?: boolean
}
export function Avatar(props: AvatarProps): JSX.Element {

View file

@ -100,7 +100,6 @@ export function PrimaryDropdown(props: PrimaryDropdownProps): JSX.Element {
imageURL={viewerData.me.profile.pictureUrl}
height="40px"
fallbackText={viewerData?.me?.name.charAt(0) ?? ''}
noFade={true}
/>
<VStack
css={{ height: '40px', maxWidth: '240px' }}

View file

@ -89,7 +89,6 @@ const RecommendationComments = (
<Avatar
imageURL={item.user?.profileImageURL}
height="28px"
noFade={true}
tooltip={item.user?.name}
fallbackText={item.user?.username[0] ?? 'U'}
/>