Skip to content

Commit f055aac

Browse files
committed
style(input): format ligature completion check
1 parent 452b327 commit f055aac

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

frontend/src/ts/input/handlers/insert-text.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,13 +158,13 @@ export async function onInsertText(options: OnInsertTextParams): Promise<void> {
158158
const correct =
159159
pendingLigatureCompletionStatus === "skipped"
160160
? false
161-
: funboxCorrect ??
161+
: (funboxCorrect ??
162162
isCharCorrect({
163163
data,
164164
inputValue: testInput,
165165
targetWord: currentWord,
166166
correctShiftUsed,
167-
});
167+
}));
168168

169169
// word navigation check
170170
const noSpaceForce =

0 commit comments

Comments
 (0)