Skip to content

Commit a31b8a6

Browse files
Removes console.log
1 parent ce031b2 commit a31b8a6

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

src/components/Dropdown/Dropdown.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -90,13 +90,14 @@ type DropdownSubContentProps = DropdownMenu.MenuSubContentProps &
9090
MainDropdownProps &
9191
ArrowProps;
9292

93-
console.log("Max height: ", )
9493
const DropdownMenuContent = styled(GenericMenuPanel)`
9594
min-width: ${({ theme }) => theme.click.genericMenu.item.size.minWidth};
9695
flex-direction: column;
9796
z-index: 1;
9897
overflow-y: scroll;
99-
max-height: calc((var(--radix-${({ $type }) => $type}-content-available-height) - 100px))
98+
max-height: calc(
99+
(var(--radix-${({ $type }) => $type}-content-available-height) - 100px)
100+
);
100101
`;
101102

102103
const DropdownContent = ({

0 commit comments

Comments
 (0)