Tempo: Fix typo (#81383)

This commit is contained in:
Fabrizio
2024-01-26 17:39:21 +02:00
committed by GitHub
parent f44592a97a
commit 2c4e1d4baf
@@ -22,7 +22,7 @@ interface Props {
}
export function TraceQLEditor(props: Props) {
const [alertText, setAlertText] = useState('error error');
const [alertText, setAlertText] = useState('');
const { onChange, onRunQuery, placeholder } = props;
const setupAutocompleteFn = useAutocomplete(props.datasource, setAlertText);