mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Remove unused noFade param
This commit is contained in:
parent
a53925edf9
commit
e6bfaa4500
3 changed files with 0 additions and 3 deletions
|
|
@ -6,7 +6,6 @@ type AvatarProps = {
|
|||
height: string
|
||||
fallbackText: string
|
||||
tooltip?: string
|
||||
noFade?: boolean
|
||||
}
|
||||
|
||||
export function Avatar(props: AvatarProps): JSX.Element {
|
||||
|
|
|
|||
|
|
@ -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' }}
|
||||
|
|
|
|||
|
|
@ -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'}
|
||||
/>
|
||||
|
|
|
|||
Loading…
Reference in a new issue