Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
sjaanus committed Oct 17, 2023
1 parent 80dd988 commit 625e011
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -63,13 +63,13 @@ const StyledWrapper = styled('div')({
});

export const ConstraintAccordionView = ({
constraint,
onEdit,
onDelete,
sx = undefined,
compact = false,
renderAfter,
}: IConstraintAccordionViewProps) => {
constraint,
onEdit,
onDelete,
sx = undefined,
compact = false,
renderAfter,
}: IConstraintAccordionViewProps) => {
const [expandable, setExpandable] = useState(true);
const [expanded, setExpanded] = useState(false);

Expand Down

0 comments on commit 625e011

Please sign in to comment.