From 226917cca743eb692fb63385c5e700efd13a9487 Mon Sep 17 00:00:00 2001 From: Harry Pierson Date: Tue, 20 Aug 2024 11:34:24 -0700 Subject: [PATCH] cleanup to trigger new version --- src/commands/launchDebugProxy.ts | 2 +- src/commands/setAppName.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/launchDebugProxy.ts b/src/commands/launchDebugProxy.ts index c107072..a8f80ca 100644 --- a/src/commands/launchDebugProxy.ts +++ b/src/commands/launchDebugProxy.ts @@ -22,7 +22,7 @@ export function getLaunchDebugProxyCommand(storageUri: vscode.Uri) { } else { const credentials = await config.getStoredCloudCredentials(arg.domain); if (!validateCredentials(credentials)) { return false; } - + const { PostgresInstanceName, ApplicationDatabaseName } = arg.app; const dbInstance = await getDbInstance(PostgresInstanceName, credentials); if (isUnauthorized(dbInstance)) { return false; } diff --git a/src/commands/setAppName.ts b/src/commands/setAppName.ts index 424adec..0d16c3d 100644 --- a/src/commands/setAppName.ts +++ b/src/commands/setAppName.ts @@ -5,7 +5,7 @@ export async function setApplicationName() { const currentAppName = config.getAppName(); - const deleteCurrentNameButton = { iconPath: new vscode.ThemeIcon("trash"), tooltip: "Clear app name"}; + const deleteCurrentNameButton = { iconPath: new vscode.ThemeIcon("trash"), tooltip: "Clear app name" }; const inputBox = vscode.window.createInputBox(); inputBox.title = "Set DBOS Cloud app name";