Skip to content

Commit

Permalink
Fix import filename case errors
Browse files Browse the repository at this point in the history
  • Loading branch information
gjsjohnmurray committed May 26, 2023
1 parent f5b434d commit c0a1c6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands.ts
Original file line number Diff line number Diff line change
@@ -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) {

Expand Down
2 changes: 1 addition & 1 deletion src/utils.ts
Original file line number Diff line number Diff line change
@@ -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<WebTerminalMessage> {
const smExtension = vscode.extensions.getExtension('intersystems-community.servermanager');
Expand Down

0 comments on commit c0a1c6b

Please sign in to comment.