File tree Expand file tree Collapse file tree 1 file changed +3
-5
lines changed
packages/common/src/components/mdx_components Expand file tree Collapse file tree 1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -60,11 +60,9 @@ const BaseStyledDetails: React.FC<BaseStyledDetailsProps> = ({
6060
6161 return (
6262 < StyledAccordion expanded = { open } disableGutters square elevation = { 0 } slotProps = { { root : { sx : rootSx } } } >
63- { summary && (
64- < StyledAccordionSummary expandIcon = { expandIcon || < DefaultExpandIcon /> } >
65- { typeof summary === "string" ? < Typography variant = "h5" > { summary } </ Typography > : summary }
66- </ StyledAccordionSummary >
67- ) }
63+ < StyledAccordionSummary expandIcon = { expandIcon || < DefaultExpandIcon /> } >
64+ { typeof summary === "string" ? < Typography variant = "h5" > { summary } </ Typography > : summary }
65+ </ StyledAccordionSummary >
6866 < AccordionDetails sx = { { pt : "0" , pb : "1rem" , px : "2rem" } } > { children } </ AccordionDetails >
6967 { actions && < AccordionActions sx = { { pt : "0" , pb : "1rem" , px : "2rem" } } > { actions } </ AccordionActions > }
7068 </ StyledAccordion >
You can’t perform that action at this time.
0 commit comments