File tree Expand file tree Collapse file tree 1 file changed +2
-4
lines changed
packages/react/src/ActionList Expand file tree Collapse file tree 1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -9,7 +9,6 @@ import {useProvidedRefOrCreate} from '../hooks'
99import { FocusKeys , useFocusZone } from '../hooks/useFocusZone'
1010import { clsx } from 'clsx'
1111import classes from './ActionList.module.css'
12- import { BoxWithFallback } from '../internal/components/BoxWithFallback'
1312
1413export const List = React . forwardRef < HTMLUListElement , ActionListProps > (
1514 (
@@ -58,8 +57,7 @@ export const List = React.forwardRef<HTMLUListElement, ActionListProps>(
5857 } }
5958 >
6059 { slots . heading }
61- < BoxWithFallback
62- as = "ul"
60+ < ul
6361 className = { clsx ( classes . ActionList , className ) }
6462 role = { listRole }
6563 aria-labelledby = { ariaLabelledBy }
@@ -69,7 +67,7 @@ export const List = React.forwardRef<HTMLUListElement, ActionListProps>(
6967 { ...props }
7068 >
7169 { childrenWithoutSlots }
72- </ BoxWithFallback >
70+ </ ul >
7371 </ ListContext . Provider >
7472 )
7573 } ,
You can’t perform that action at this time.
0 commit comments