Skip to content

Commit

Permalink
[frontend] Fix red color issue (#6117)
Browse files Browse the repository at this point in the history
  • Loading branch information
CelineSebe committed Feb 27, 2024
1 parent 9920d67 commit bde14b4
Showing 1 changed file with 1 addition and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,6 @@ const useStyles = makeStyles({
autoCompleteIndicator: {
display: 'none',
},
input: {
color: 'red',
'::before': {
borderColor: 'red',
},
},
});

export const searchGroupFieldQuery = graphql`
Expand Down Expand Up @@ -145,7 +139,7 @@ const GroupField: React.FC<GroupFieldProps> = (props) => {
<div className={classes.text}>{option.label}</div>
</li>
)}
classes={{ clearIndicator: classes.autoCompleteIndicator, input: classes.input }}
classes={{ clearIndicator: classes.autoCompleteIndicator }}
/>
);
};
Expand Down

0 comments on commit bde14b4

Please sign in to comment.