Browse Source

Fixes wrong char

main
Eric Amodio 1 year ago
parent
commit
a56f87c57f
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/commands/switchMode.ts

+ 1
- 1
src/commands/switchMode.ts View File

@ -21,7 +21,7 @@ export class SwitchModeCommand extends Command {
const pick = await showModePicker();
if (pick === undefined) return;
setLogScopeExit(scope, ` \u2014 mode=${pick.key ?? ''}`);
setLogScopeExit(scope, ` \u2022 mode=${pick.key ?? ''}`);
const active = configuration.get('mode.active');
if (active === pick.key) return;

Loading…
Cancel
Save