Skip to content

Commit

Permalink
Fix aria-expanded value
Browse files Browse the repository at this point in the history
  • Loading branch information
narin committed Apr 23, 2024
1 parent 631ae25 commit d18b496
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/components/src/components/Alert/Alert.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ export const Alert: FC<AlertProps> = ({
<Pressable
onPress={() => setExpanded(!expanded)}
role="tab"
aria-expanded={{ expanded }}
aria-expanded={expanded}
aria-label={a11yLabel}
hitSlop={hitSlop}
style={{ flexDirection: 'row' }}>
Expand Down

0 comments on commit d18b496

Please sign in to comment.