Skip to content

Commit

Permalink
Update packages/vscode/src/extension.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Druue authored May 28, 2024
1 parent c92227e commit cce95f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vscode/src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import { ExtensionContext } from 'vscode'
import plugins from './plugins'

export function activate(context: ExtensionContext): void {
plugins.map(async (plugin) => {
void plugins.map(async (plugin) => {
const enabled = await plugin.enabled()
if (enabled) {
console.log(`Activating ${plugin.name}`)
Expand Down

0 comments on commit cce95f3

Please sign in to comment.