Skip to content

Commit

Permalink
fix (#6159)
Browse files Browse the repository at this point in the history
  • Loading branch information
benisgold authored and ibrahimtaveras00 committed Oct 2, 2024
1 parent 346afbe commit d9b9086
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 16 deletions.
11 changes: 3 additions & 8 deletions src/components/asset-list/RecyclerAssetList2/Claimable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,14 +40,9 @@ export const Claimable = React.memo(function Claimable({ uniqueId, extendedState
flexDirection="row"
>
<Inline alignVertical="center" space="12px">
<Box
as={FasterImageView}
source={{ url: claimable.iconUrl }}
style={{ height: 40, width: 40 }}
borderRadius={11}
borderWidth={1}
borderColor={{ custom: 'rgba(0, 0, 0, 0.03)' }}
/>
<Box borderRadius={11} borderWidth={1} borderColor={{ custom: 'rgba(0, 0, 0, 0.03)' }}>
<FasterImageView source={{ url: claimable.iconUrl }} style={{ height: 40, width: 40 }} />
</Box>
<Stack space={{ custom: 11 }}>
<Text
weight="semibold"
Expand Down
11 changes: 3 additions & 8 deletions src/screens/claimables/ClaimingClaimableSharedUI.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -156,14 +156,9 @@ export const ClaimingClaimableSharedUI = ({
<ListHeader
TitleComponent={
<Box alignItems="center" flexDirection="row" gap={10} justifyContent="center">
<Box
as={FasterImageView}
source={{ url: claimable.iconUrl }}
style={{ height: 20, width: 20 }}
borderRadius={6}
borderWidth={1}
borderColor={{ custom: 'rgba(0, 0, 0, 0.03)' }}
/>
<Box borderRadius={6} borderWidth={1} borderColor={{ custom: 'rgba(0, 0, 0, 0.03)' }}>
<FasterImageView source={{ url: claimable.iconUrl }} style={{ height: 20, width: 20 }} />
</Box>
<TextShadow shadowOpacity={0.3}>
<Text align="center" color={panelTitleColor} size="20pt" weight="heavy">
{panelTitle}
Expand Down

0 comments on commit d9b9086

Please sign in to comment.