diff --git a/src/design-system/assets-table/assets-table-token-amount.component.tsx b/src/design-system/assets-table/assets-table-token-amount.component.tsx index 68e152d..cd80de0 100644 --- a/src/design-system/assets-table/assets-table-token-amount.component.tsx +++ b/src/design-system/assets-table/assets-table-token-amount.component.tsx @@ -16,7 +16,9 @@ export const TokenAmount = ({ }: Readonly): JSX.Element => { return ( - {amount} + + {amount} + {fiatPrice} diff --git a/src/design-system/assets-table/assets-table-token-profile.component.tsx b/src/design-system/assets-table/assets-table-token-profile.component.tsx index d4631f7..49351e7 100644 --- a/src/design-system/assets-table/assets-table-token-profile.component.tsx +++ b/src/design-system/assets-table/assets-table-token-profile.component.tsx @@ -11,25 +11,33 @@ interface Props { imageSrc: string; name: string; description: string; + testId?: string; } export const TokenProfile = ({ imageSrc, name, description, + testId = 'token-profile', }: Readonly): JSX.Element => { return (
- {name} + {name} - {name} + + {name} + - + {description} diff --git a/src/design-system/profile-picture/image.component.tsx b/src/design-system/profile-picture/image.component.tsx index 5896933..c02c912 100644 --- a/src/design-system/profile-picture/image.component.tsx +++ b/src/design-system/profile-picture/image.component.tsx @@ -12,6 +12,7 @@ interface Props { alt?: string; delayMs?: number; selected?: boolean; + testId?: string; } export const Image = ({ @@ -20,13 +21,19 @@ export const Image = ({ alt, delayMs = 600, selected, + testId = 'profile-picture', }: Readonly): JSX.Element => ( - + {fallback}