Skip to content

Commit

Permalink
chore: removed 'picture' text from image alt
Browse files Browse the repository at this point in the history
  • Loading branch information
zt4ff committed Nov 24, 2022
1 parent 475b336 commit ce9df3e
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const MutualSubscribersList: FC<Props> = ({ viewingChannelId }) => {
<img
className="w-5 h-5 rounded"
src={getProfilePicture(channel)}
alt="channel picture"
alt="channel"
draggable={false}
/>
<div className="flex items-center space-x-1">
Expand Down
4 changes: 2 additions & 2 deletions apps/web/src/components/Common/CollectorsList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ const CollectorsList: FC<Props> = ({ videoId }) => {
<img
className="w-5 h-5 rounded"
src={getProfilePicture(wallet?.defaultProfile, 'avatar')}
alt="channel picture"
alt="channel"
draggable={false}
/>
<div className="flex items-center space-x-1">
Expand All @@ -89,7 +89,7 @@ const CollectorsList: FC<Props> = ({ videoId }) => {
getRandomProfilePicture(wallet.address),
'avatar'
)}
alt="channel picture"
alt="channel"
draggable={false}
/>
<div>{shortenAddress(wallet?.address)}</div>
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/Common/MirroredList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const MirroredList: FC<Props> = ({ videoId }) => {
<img
className="w-5 h-5 rounded"
src={getProfilePicture(profile, 'avatar')}
alt="channel picture"
alt="channel"
draggable={false}
/>
<div className="flex items-center space-x-1">
Expand Down
4 changes: 2 additions & 2 deletions apps/web/src/components/Common/SubscribersList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ const SubscribersList: FC<Props> = ({ channel }) => {
subscriber.wallet?.defaultProfile,
'avatar'
)}
alt="channel picture"
alt="channel"
draggable={false}
/>
<div className="flex items-center space-x-1">
Expand Down Expand Up @@ -97,7 +97,7 @@ const SubscribersList: FC<Props> = ({ channel }) => {
getRandomProfilePicture(subscriber.wallet.address),
'avatar'
)}
alt="channel picture"
alt="channel"
draggable={false}
/>
<div>{shortenAddress(subscriber.wallet?.address)}</div>
Expand Down
6 changes: 3 additions & 3 deletions apps/web/src/components/Common/UserMenu.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ const UserMenu = () => {
<img
className="object-cover bg-white rounded-full dark:bg-theme w-8 h-8 md:w-9 md:h-9"
src={getProfilePicture(selectedChannel)}
alt="channel picture"
alt="channel"
draggable={false}
/>
</Button>
Expand Down Expand Up @@ -118,7 +118,7 @@ const UserMenu = () => {
<img
className="w-6 h-6 rounded-lg"
src={getProfilePicture(channel)}
alt="channel picture"
alt="channel"
draggable={false}
/>
<span className="truncate whitespace-nowrap">
Expand All @@ -139,7 +139,7 @@ const UserMenu = () => {
<img
className="object-cover rounded-full w-9 h-9"
src={getProfilePicture(selectedChannel, 'avatar')}
alt="channel picture"
alt="channel"
draggable={false}
/>
<div className="grid">
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/Settings/BasicInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ const BasicInfo = ({ channel }: Props) => {
}
className="object-cover object-center w-full h-48 bg-white rounded-xl md:h-56 dark:bg-gray-900"
draggable={false}
alt="Cover Image"
alt="Cover"
/>
<label
htmlFor="chooseCover"
Expand Down
2 changes: 1 addition & 1 deletion apps/web/src/components/Settings/ChannelPicture.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ const ChannelPicture: FC<Props> = ({ channel }) => {
}
className="object-cover w-32 h-32 border-2 rounded-full"
draggable={false}
alt="channel picture"
alt="channel"
/>
<label
htmlFor="choosePfp"
Expand Down

0 comments on commit ce9df3e

Please sign in to comment.