Skip to content

Commit

Permalink
asset checks polish
Browse files Browse the repository at this point in the history
  • Loading branch information
salazarm committed Mar 5, 2024
1 parent b83959d commit 31d1a63
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,13 @@ export const CollapsibleSection = ({
<Box flex={{direction: 'column'}}>
<Box
{...headerWrapperProps}
flex={{direction: 'row', alignItems: 'center', gap: 6, ...(headerWrapperProps?.flex || {})}}
flex={{
direction: 'row',
alignItems: 'center',
gap: 6,
grow: 1,
...(headerWrapperProps?.flex || {}),
}}
onClick={() => {
setIsCollapsed(!isCollapsed);
headerWrapperProps?.onClick?.();
Expand Down

0 comments on commit 31d1a63

Please sign in to comment.