Skip to content

Commit

Permalink
feat: fix img alt
Browse files Browse the repository at this point in the history
  • Loading branch information
fairlighteth committed Oct 23, 2023
1 parent ec44b5a commit 002c17f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ export function TokenLogo({ logoURI, className, size = 36 }: TokenLogoProps) {
{hasError || !logoURI ? (
<Slash size={size} />
) : (
<img src={logoURI} onError={onError} width={size} height={size} />
<img src={logoURI} onError={onError} width={size} height={size} alt="Token logo" />
)}
</TokenLogoWrapper>
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export function TokenSourceTitle(props: TokenSourceTitleProps) {
return (
<Wrapper>
<Title>
<img src={TokenListLogo} />
<img src={TokenListLogo} alt="Token logo" />
{children}
</Title>
<div>
Expand Down

0 comments on commit 002c17f

Please sign in to comment.