Skip to content

Commit

Permalink
chore: remove ids
Browse files Browse the repository at this point in the history
  • Loading branch information
DNR500 committed Aug 12, 2024
1 parent d911798 commit 5738827
Showing 1 changed file with 4 additions and 17 deletions.
21 changes: 4 additions & 17 deletions packages/widget/src/components/Routes/RoutesExpanded.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,19 +45,13 @@ export const RoutesExpanded = () => {
const match = Boolean(element?.props?.children);

return (
<CollapseContainer id="CollapseContainer">
<Collapse
timeout={timeout}
in={match}
orientation="horizontal"
id="TopLevelCollapse"
>
<CollapseContainer>
<Collapse timeout={timeout} in={match} orientation="horizontal">
<RouteTopLevelGrow
timeout={timeout}
in={match}
mountOnEnter
unmountOnExit
id="RouteTopLevelGrow"
>
<div>
<RoutesExpandedElement />
Expand Down Expand Up @@ -130,17 +124,10 @@ export const RoutesExpandedElement = () => {
in={expanded}
orientation="horizontal"
onExited={onExit}
id="RoutesExpandedCollapse"
>
<Grow
timeout={timeout.enter}
in={expanded}
mountOnEnter
unmountOnExit
id="RouteNestedGrow"
>
<Grow timeout={timeout.enter} in={expanded} mountOnEnter unmountOnExit>
<Container enableColorScheme minimumHeight={isLoading}>
<ScrollableContainer id="ScrollableContainer">
<ScrollableContainer>
<Header>
<Typography fontSize={18} fontWeight="700" flex={1} noWrap>
{subvariant === 'custom'
Expand Down

0 comments on commit 5738827

Please sign in to comment.