Skip to content

Commit

Permalink
VADC-1431
Browse files Browse the repository at this point in the history
: update not found graphic to be aria hidden
  • Loading branch information
Shawn O'Connor committed Oct 16, 2024
1 parent 12e74ec commit 3fe4383
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/ErrorPage403.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class ErrorPage403 extends React.Component {
<p>
The page you are trying to reach has restricted access. Please contact <a href={`mailto:${supportEmail}`}>{supportEmail}</a> for more information.
</p>
<NotFoundSVG />
<NotFoundSVG aria-hidden='true' />
</div>
);
}
Expand Down
2 changes: 1 addition & 1 deletion src/components/NotFound.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class NotFound extends React.Component {
Either this URL is not valid, or you do not have access.
Please contact your administrator for more information.
</p>
<NotFoundSVG alt='' role='img' />
<NotFoundSVG aria-hidden='true' />
</div>
);
}
Expand Down

0 comments on commit 3fe4383

Please sign in to comment.