Skip to content

Commit

Permalink
Merge pull request #1924 from okta/jk/OKTA-634574
Browse files Browse the repository at this point in the history
Fix ARIA props on Typography component
  • Loading branch information
edburyenegren-okta authored Aug 18, 2023
2 parents 37bba47 + 21da6c9 commit ed59b29
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/odyssey-react-mui/src/Typography.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -112,9 +112,9 @@ export const Typography = ({

return (
<MuiTypography
ariaDescribedBy={ariaDescribedBy}
ariaLabel={ariaLabel}
ariaLabelledBy={ariaLabelledBy}
aria-describedby={ariaDescribedBy}
aria-label={ariaLabel}
aria-labelledby={ariaLabelledBy}
children={children}
classes={classes}
color={color}
Expand Down

0 comments on commit ed59b29

Please sign in to comment.