Skip to content

Commit

Permalink
fix(InputSelect): hover effect removed from mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
DSil committed Jul 25, 2023
1 parent 4c276cf commit 766a8d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/orbit-components/src/InputSelect/index.tsx
Expand Up @@ -300,7 +300,7 @@ const InputSelect = React.forwardRef<HTMLInputElement, Props>(
<InputSelectOption
key={optionId}
id={optionId}
active={activeIdx === optionIdx}
active={!!isLargeMobile && activeIdx === optionIdx}
isSelected={isSelected}
ref={optionRef}
title={title}
Expand Down

0 comments on commit 766a8d8

Please sign in to comment.