diff --git a/src/commands.ts b/src/commands.ts index c0d4da4..c072193 100644 --- a/src/commands.ts +++ b/src/commands.ts @@ -1,6 +1,6 @@ import * as vscode from 'vscode'; import { webViewMessage } from './utils'; -import { WebTerminalPanel } from './webterminalPanel'; +import { WebTerminalPanel } from './webTerminalPanel'; export async function register(context: vscode.ExtensionContext) { diff --git a/src/utils.ts b/src/utils.ts index 5f95e1b..163effa 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -1,5 +1,5 @@ import * as vscode from 'vscode'; -import { WebTerminalMessage } from './webterminalPanel'; +import { WebTerminalMessage } from './webTerminalPanel'; export async function webViewMessage(serverId: string, withCredentials: boolean, namespace?: string): Promise { const smExtension = vscode.extensions.getExtension('intersystems-community.servermanager');