We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e4b9c4 commit e1e1bfbCopy full SHA for e1e1bfb
frontend/src/ts/test/layout-emulator.ts
@@ -20,7 +20,7 @@ export async function getCharFromEvent(
20
let isCapitalized = event.shiftKey;
21
const altGrIndex = isAltGrPressed && keyVariants.length > 2 ? 2 : 0;
22
const isNotPunctuation = !isPunctuationPattern.test(
23
- keyVariants.slice(altGrIndex, altGrIndex + 2).join()
+ keyVariants.slice(altGrIndex, altGrIndex + 2).join("")
24
);
25
if (capsState && isNotPunctuation) {
26
isCapitalized = !event.shiftKey;
0 commit comments