Skip to content

Commit 689de5b

Browse files
committed
chore: Satisfy the linter.
1 parent 08839a4 commit 689de5b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/actions/arrow_navigation.ts

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ export class ArrowNavigation {
188188
isHandled = true;
189189
}
190190
return isHandled;
191-
case Constants.STATE.TOOLBOX:
191+
case Constants.STATE.TOOLBOX: {
192192
const toolbox = workspace.getToolbox() as Toolbox;
193193
if (toolbox) {
194194
if (!toolbox.getSelectedItem()) {
@@ -208,6 +208,7 @@ export class ArrowNavigation {
208208
}
209209
}
210210
return isHandled;
211+
}
211212
default:
212213
return false;
213214
}
@@ -251,7 +252,7 @@ export class ArrowNavigation {
251252
isHandled = true;
252253
}
253254
return isHandled;
254-
case Constants.STATE.TOOLBOX:
255+
case Constants.STATE.TOOLBOX: {
255256
const toolbox = workspace.getToolbox() as Toolbox;
256257
if (toolbox) {
257258
// @ts-expect-error private method
@@ -262,6 +263,7 @@ export class ArrowNavigation {
262263
}
263264
}
264265
return isHandled;
266+
}
265267
default:
266268
return false;
267269
}

0 commit comments

Comments
 (0)