@@ -173,6 +174,7 @@ const ProfileSettingsComponent: FC
= ({ profile:
loading={isMutationInFlight}
disabled={isMutationInFlight}
onClick={() => handleRemoveImage(PROFILE_FORM_VALUE.image)}
+ aria-label="Remove avatar button"
>
Remove
@@ -252,6 +254,7 @@ const ProfileSettingsComponent: FC = ({ profile:
loading={isMutationInFlight}
disabled={isMutationInFlight}
sx={{ maxWidth: 'fit-content' }}
+ aria-label="Remove banner button"
>
Remove
diff --git a/packages/design-system/components/web/avatars/AvatarWithPlaceholder/index.tsx b/packages/design-system/components/web/avatars/AvatarWithPlaceholder/index.tsx
index 24dc1936..afd61818 100644
--- a/packages/design-system/components/web/avatars/AvatarWithPlaceholder/index.tsx
+++ b/packages/design-system/components/web/avatars/AvatarWithPlaceholder/index.tsx
@@ -8,9 +8,10 @@ const AvatarWithPlaceholder: FC = ({
width = 40,
height = 40,
children,
+ alt,
...props
}) => (
-
+
{children || (
)}
diff --git a/packages/design-system/components/web/avatars/CircledAvatar/index.tsx b/packages/design-system/components/web/avatars/CircledAvatar/index.tsx
index 3f793f07..977a9d42 100644
--- a/packages/design-system/components/web/avatars/CircledAvatar/index.tsx
+++ b/packages/design-system/components/web/avatars/CircledAvatar/index.tsx
@@ -11,6 +11,7 @@ const CircledAvatar: FC = ({
height = 40,
hasError,
children,
+ alt,
...props
}) => (
@@ -18,6 +19,7 @@ const CircledAvatar: FC = ({
width={width}
height={height}
sx={({ palette }) => ({ border: `solid 8px ${palette.background.default}` })}
+ alt={alt}
{...props}
>
{children}
diff --git a/packages/design-system/components/web/buttons/FileUploadButton/index.tsx b/packages/design-system/components/web/buttons/FileUploadButton/index.tsx
index 136d3405..b78892b2 100644
--- a/packages/design-system/components/web/buttons/FileUploadButton/index.tsx
+++ b/packages/design-system/components/web/buttons/FileUploadButton/index.tsx
@@ -14,6 +14,7 @@ const FileUploadButton: FC = (props) => {
const { sendToast } = useNotification()
const { accept, maxSize, ...fileUploadProps } = props
const { control, label, name, setFile } = fileUploadProps
+
return (
<>