@@ -178,7 +178,7 @@ function backspaceToPrevious(): void {
178178 }
179179 }
180180
181- void Caret . updatePosition ( ) ;
181+ Caret . updatePosition ( ) ;
182182 Replay . addReplayEvent ( "backWord" ) ;
183183}
184184
@@ -258,7 +258,7 @@ async function handleSpace(): Promise<void> {
258258 dontInsertSpace = false ;
259259 Replay . addReplayEvent ( "incorrectLetter" , "_" ) ;
260260 void TestUI . updateActiveWordLetters ( ) ;
261- void Caret . updatePosition ( ) ;
261+ Caret . updatePosition ( ) ;
262262 }
263263 return ;
264264 }
@@ -346,7 +346,7 @@ async function handleSpace(): Promise<void> {
346346 }
347347 } //end of line wrap
348348
349- void Caret . updatePosition ( ) ;
349+ Caret . updatePosition ( ) ;
350350
351351 // enable if i decide that auto tab should also work after a space
352352 // if (
@@ -565,7 +565,7 @@ async function handleChar(
565565 ) {
566566 TestInput . input . current = resultingWord ;
567567 void TestUI . updateActiveWordLetters ( ) ;
568- void Caret . updatePosition ( ) ;
568+ Caret . updatePosition ( ) ;
569569 return ;
570570 }
571571
@@ -768,7 +768,7 @@ async function handleChar(
768768 } , 0 ) ;
769769
770770 if ( char !== "\n" ) {
771- void Caret . updatePosition ( ) ;
771+ Caret . updatePosition ( ) ;
772772 }
773773}
774774
@@ -1377,7 +1377,7 @@ $("#wordsInput").on("input", async (event) => {
13771377 }
13781378
13791379 void TestUI . updateActiveWordLetters ( ) ;
1380- void Caret . updatePosition ( ) ;
1380+ Caret . updatePosition ( ) ;
13811381 if ( ! CompositionState . getComposing ( ) ) {
13821382 const keyStroke = event ?. originalEvent as InputEvent ;
13831383 if ( keyStroke . inputType === "deleteWordBackward" ) {
0 commit comments