Skip to content

Commit

Permalink
Fixed linting
Browse files Browse the repository at this point in the history
  • Loading branch information
jbicker committed Nov 29, 2024
1 parent fc69a85 commit 689bd51
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ export class ContainerConnectionContribution extends AbstractRemoteRegistryContr
}

async getOrSelectDevcontainerFile(): Promise<string | undefined> {
const workspace = await this.workspaceService.workspace;
if(!workspace) {
const workspace = this.workspaceService.workspace;
if (!workspace) {
return;
}
const devcontainerFiles = await this.connectionProvider.getDevContainerFiles(workspace.resource.path.toString());
Expand Down

0 comments on commit 689bd51

Please sign in to comment.