don't declare a variable that isn't used

textInput is no longer used. This removes the declaration as it is not used or needed.
This commit is contained in:
Jonathan Belcher
2020-09-16 13:00:36 -04:00
committed by GitHub
parent 2f1c0213d3
commit 822ca5f07b
@@ -272,7 +272,7 @@ export class TextAreaInput extends Disposable {
return;
}
const [newState, typeInput] = deduceComposition(e.data);
const [newState] = deduceComposition(e.data);
this._textAreaState = newState;
this._onCompositionUpdate.fire(e);
}));