Skip to content
Merged
2 changes: 1 addition & 1 deletion static/app/components/events/contexts/utils.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -363,7 +363,7 @@
if (getLogoImage(iconName) === null) {
return null;
}
return <ContextIcon name={iconName} {...contextIconProps} />;
return <ContextIcon name={iconName} alt={`${type}: ${iconName}`} {...contextIconProps} />;

Check failure on line 366 in static/app/components/events/contexts/utils.tsx

View workflow job for this annotation

GitHub Actions / typescript

Type '{ size?: "2xl" | "lg" | "md" | "sm" | "xl" | "xs" | undefined; name: string; alt: string; }' is not assignable to type 'IntrinsicAttributes & ContextIconProps'.
}

export function getFormattedContextData({
Expand Down
2 changes: 1 addition & 1 deletion static/app/components/feedback/feedbackSetupPanel.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export function FeedbackSetupPanel() {
<NoMarginPanel>
<Container>
<IlloBox>
<img src={feedbackOnboardingImg} />
<img src={feedbackOnboardingImg} alt="" />
</IlloBox>
<StyledBox>
<Fragment>
Expand Down
2 changes: 1 addition & 1 deletion static/app/views/feedback/feedbackEmptyState.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export function FeedbackEmptyState({projectIds, issueTab = false}: Props) {
return (
<OnboardingPanel
data-test-id="user-feedback-empty"
image={<img src={emptyStateImg} />}
image={<img src={emptyStateImg} alt="" />}
>
<h3>{t('What do users think?')}</h3>
<p>
Expand Down
Loading