Skip to content

Commit

Permalink
whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
riknoll committed Apr 18, 2024
1 parent 706dec2 commit ed57016
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 4 deletions.
4 changes: 1 addition & 3 deletions react-common/components/controls/Accordion/Accordion.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ export const Accordion = (props: AccordionProps) => {
role,
} = props;


return (
<AccordionProvider>
<div
Expand Down Expand Up @@ -74,7 +73,6 @@ export const AccordionItem = (props: AccordionItemProps) => {
}
}, [isExpanded]);


return (
<div
className={classList("common-accordion", className)}
Expand Down Expand Up @@ -108,7 +106,7 @@ export const AccordionItem = (props: AccordionItemProps) => {
<div
id={panelId}
className="common-accordion-panel-outer"
style={{ display: expanded ? "block" : "none" }}
style={{ display: isExpanded ? "block" : "none" }}
>
{isExpanded && mappedChildren[1]}
</div>
Expand Down
1 change: 0 additions & 1 deletion theme/github.less
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,6 @@
}
}


.commit-view:first-child {
border-top: none;
}
Expand Down

0 comments on commit ed57016

Please sign in to comment.