Skip to content

Commit

Permalink
cleanup to trigger new version
Browse files Browse the repository at this point in the history
  • Loading branch information
devhawk committed Aug 20, 2024
1 parent d97d9ab commit 226917c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/commands/launchDebugProxy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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; }
Expand Down
2 changes: 1 addition & 1 deletion src/commands/setAppName.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 226917c

Please sign in to comment.