From c0a1c6b0a651cb25b4e8fbf8a83951e92d7b026d Mon Sep 17 00:00:00 2001 From: gjsjohnmurray Date: Fri, 26 May 2023 17:30:59 +0100 Subject: [PATCH] Fix import filename case errors --- src/commands.ts | 2 +- src/utils.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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');