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";