Skip to content

Commit 03c9022

Browse files
fix: explicitly remove aria-describedby in SideDrawer.Content
see: https://www.radix-ui.com/primitives/docs/components/dialog\#description - If you want to remove the description entirely, remove this part and pass aria-describedby={undefined}
1 parent c138946 commit 03c9022

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/design-system/side-drawer/side-drawer-content.component.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ export const Content = ({
2727
{...props}
2828
className={classNames(cx.container)}
2929
style={{ zIndex: zIndex === undefined ? undefined : zIndex + 1 }}
30+
aria-describedby={undefined}
3031
>
3132
<ContentCard>{children}</ContentCard>
3233
</Dialog.Content>

0 commit comments

Comments
 (0)