fix(ui): remove dead code

isSelected doesn't seem to get trigger in any way
This commit is contained in:
Łukasz Mierzwa
2018-09-02 18:27:36 +01:00
parent bbbcb497a5
commit e0d4917566

View File

@@ -78,7 +78,7 @@ const ReactSelectStyles = {
}),
option: (base, state) => ({
...base,
color: state.isSelected ? "#95a5a6" : "inherit",
color: "inherit",
backgroundColor: "inherit",
"&:hover": { color: "#fff", backgroundColor: "#455a64", cursor: "pointer" }
})