Skip to content

Commit fa386f3

Browse files
fix regression
1 parent 563b857 commit fa386f3

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

docs/src/modules/components/ApiPage/list/ExpandableApiItem.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,9 @@ export default function ExpandableApiItem(props: ExpandableApiItemProps) {
188188
ownerState={{ type }}
189189
{...other}
190190
className={clsx(
191-
`MuiApi-item-root${isExtendable ? 'MuiApi-item-header-extendable' : ''}`,
191+
// TODO remove once https://github.com/tailwindlabs/prettier-plugin-tailwindcss/issues/337 is fixed
192+
// prettier-ignore
193+
`MuiApi-item-root${isExtendable ? ' MuiApi-item-header-extendable' : ''}`,
192194
className,
193195
)}
194196
>

0 commit comments

Comments
 (0)