Skip to content

Commit 4159791

Browse files
authored
fix(app): fix zIndex (#15480)
1 parent 38f455a commit 4159791

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/src/atoms/MenuList/DropdownMenu.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ export function DropdownMenu(props: DropdownMenuProps): JSX.Element {
234234
>
235235
{filterOptions.map((option, index) => (
236236
<MenuItem
237-
zIndex="3"
237+
zIndex={3}
238238
key={`${option.name}-${index}`}
239239
onClick={() => {
240240
onClick(option.value)

0 commit comments

Comments
 (0)