Skip to content

Commit fba17fb

Browse files
authored
Format
1 parent acaaa12 commit fba17fb

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/hotkey.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,8 @@ export function eventToHotkeyString(
4747
}
4848

4949
if (!modifierKeyNames.includes(key)) {
50-
const nonOptionPlaneKey = hotkeyString.includes('Alt') && matchApplePlatform.test(platform) ? macosSymbolLayerKeys[key] ?? key : key
50+
const nonOptionPlaneKey =
51+
hotkeyString.includes('Alt') && matchApplePlatform.test(platform) ? macosSymbolLayerKeys[key] ?? key : key
5152
const syntheticKey = syntheticKeyNames[nonOptionPlaneKey] ?? nonOptionPlaneKey
5253
hotkeyString.push(syntheticKey)
5354
}

0 commit comments

Comments
 (0)