Skip to content

Commit

Permalink
fix: extension crash
Browse files Browse the repository at this point in the history
fixes #2531
  • Loading branch information
Jason3S committed Feb 20, 2023
1 parent 0840e2b commit ae216aa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/client/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import { ConfigTargetLegacy, sectionCSpell } from './settings';
import { initStatusBar } from './statusbar';
import { logErrors, silenceErrors } from './util/errors';
import { performance } from './util/perf';
import { activate as settingsViewerActivate } from 'settings-viewer-next';
// import { activate as settingsViewerActivate } from 'settings-viewer-next';

performance.mark('cspell_done_import');

Expand All @@ -24,7 +24,7 @@ modules.init();
export async function activate(context: ExtensionContext): Promise<ExtensionApi> {
performance.mark('cspell_activate_start');

await settingsViewerActivate(context);
// await settingsViewerActivate(context);

// Get the cSpell Client
const client = await CSpellClient.create(context);
Expand Down

0 comments on commit ae216aa

Please sign in to comment.