Skip to content

Commit

Permalink
feat(images): add 'alt' attribute to Image on Sound components
Browse files Browse the repository at this point in the history
  • Loading branch information
mateusfg7 committed Apr 12, 2022
1 parent 9a4674f commit bf182ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Sound/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export const Sound: React.FC<ISound> = ({ name, iconFile, audioFile }) => {
} umami--click--${name}-sound`}
onClick={() => toggleSoundState()}
>
<Image src={`/assets/${iconFile}`} width={80} height={80} />
<Image src={`/assets/${iconFile}`} alt={name} width={80} height={80} />
</SoundButton>

<VolumeController
Expand Down

0 comments on commit bf182ae

Please sign in to comment.