We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d5a215 commit 289a1e3Copy full SHA for 289a1e3
src/app/views/query-runner/query-input/auto-complete/AutoComplete.tsx
@@ -43,9 +43,6 @@ const useStyles = makeStyles({
43
},
44
noResize: {
45
resize: 'none'
46
- },
47
- errorText: {
48
- color: 'red'
49
}
50
});
51
@@ -359,7 +356,7 @@ function AutoComplete(props: IAutoCompleteProps) {
359
356
)}
360
357
361
358
{descriptionError && !shouldShowSuggestions && !autoCompletePending && (
362
- <Text size={200} className={classes.errorText}>
+ <Text size={200}>
363
{descriptionError}
364
</Text>
365
0 commit comments