diff --git a/components/Select.tsx b/components/Select.tsx index 71217e6..4b27317 100644 --- a/components/Select.tsx +++ b/components/Select.tsx @@ -91,7 +91,7 @@ const Select = forwardRef((props, ref) => { ...provided, color: colors.searchText, backgroundColor: - state.isSelected || state.isFocused + state.isFocused ? colors.activeLight : colors.dropDownBg, ":hover": { diff --git a/components/SetHookDialog.tsx b/components/SetHookDialog.tsx index db8166f..b19be63 100644 --- a/components/SetHookDialog.tsx +++ b/components/SetHookDialog.tsx @@ -206,7 +206,6 @@ export const SetHookDialog: React.FC<{ accountAddress: string }> = React.memo(