Skip to content

Commit 9f677f3

Browse files
committed
fix: nospace being active for all tests
1 parent 27ac4be commit 9f677f3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/src/ts/controllers/input-controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ function handleChar(
498498
char = handleChar(char);
499499
}
500500

501-
const nospace = isFunboxActiveWithProperty("nospace") !== undefined;
501+
const nospace = isFunboxActiveWithProperty("nospace");
502502

503503
if (char !== "\n" && char !== "\t" && /\s/.test(char)) {
504504
if (nospace) return;

0 commit comments

Comments
 (0)