Skip to content

Commit a56f87c

Browse files
committed
Fixes wrong char
1 parent e6aa7c2 commit a56f87c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/switchMode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export class SwitchModeCommand extends Command {
2121
const pick = await showModePicker();
2222
if (pick === undefined) return;
2323

24-
setLogScopeExit(scope, ` \u2014 mode=${pick.key ?? ''}`);
24+
setLogScopeExit(scope, ` \u2022 mode=${pick.key ?? ''}`);
2525

2626
const active = configuration.get('mode.active');
2727
if (active === pick.key) return;

0 commit comments

Comments
 (0)