Skip to content

Commit

Permalink
lint problem
Browse files Browse the repository at this point in the history
  • Loading branch information
cretadn22 committed Sep 10, 2024
1 parent fda5d77 commit 89773fe
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/pages/workspace/expensifyCard/WorkspaceCardListRow.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,15 +2,14 @@ import React, {useMemo} from 'react';
import {View} from 'react-native';
import Avatar from '@components/Avatar';
import Badge from '@components/Badge';
import {FallbackAvatar} from '@components/Icon/Expensicons';
import Text from '@components/Text';
import useResponsiveLayout from '@hooks/useResponsiveLayout';
import useThemeStyles from '@hooks/useThemeStyles';
import * as CurrencyUtils from '@libs/CurrencyUtils';
import * as PersonalDetailsUtils from '@libs/PersonalDetailsUtils';
import {getDefaultAvatarURL} from '@libs/UserUtils';
import CONST from '@src/CONST';
import type {PersonalDetails} from '@src/types/onyx';
import { FallbackAvatar } from '@components/Icon/Expensicons';

type WorkspacesListRowProps = {
/** The last four digits of the card */
Expand Down Expand Up @@ -39,7 +38,7 @@ function WorkspaceCardListRow({limit, cardholder, lastFourPAN, name, currency}:
<View style={[styles.flexRow, styles.gap5, styles.br3, styles.p4]}>
<View style={[styles.flexRow, styles.flex5, styles.gap3, styles.alignItemsCenter]}>
<Avatar
source={cardholder?.avatar ?? FallbackAvatar}
source={cardholder?.avatar ?? FallbackAvatar}
avatarID={cardholder?.accountID}
type={CONST.ICON_TYPE_AVATAR}
size={CONST.AVATAR_SIZE.DEFAULT}
Expand Down

0 comments on commit 89773fe

Please sign in to comment.