Tempo: Fix typo (#81383)

This commit is contained in:
Fabrizio 2024-01-26 16:39:21 +01:00 committed by GitHub
parent f44592a97a
commit 2c4e1d4baf
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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);