Skip to content

Commit ce713c6

Browse files
committed
Prettier what?
1 parent b5d8324 commit ce713c6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/lib/undo-stack.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ export default class UndoStack {
44
static isMac = navigator.platform.includes('Mac');
55
static replaceKbdOnMac = string =>
66
UndoStack.isMac
7-
// Some locales don't call it "ctrl"
8-
? string.replace(/(?<=>)[a-z]+\+z/i, '⌘Z')
7+
? // Some locales don't call it "ctrl"
8+
string.replace(/(?<=>)[a-z]+\+z/i, '⌘Z')
99
: string;
1010

1111
constructor(element) {

0 commit comments

Comments
 (0)