Skip to content

Commit

Permalink
fix lint errors
Browse files Browse the repository at this point in the history
Signed-off-by: Trae Yelovich <[email protected]>
  • Loading branch information
traeok committed Dec 27, 2024
1 parent a8a1e55 commit 390505d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/zowe-explorer/src/trees/dataset/DatasetInit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export class DatasetInit {
await datasetProvider.onDidChangeConfiguration(e);
})
);

context.subscriptions.push(
vscode.commands.registerCommand("zowe.ds.pdsSearchFor", async (node: IZoweDatasetTreeNode) => DatasetActions.search(context, node))
);
Expand Down
4 changes: 2 additions & 2 deletions packages/zowe-explorer/src/utils/AuthUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ export class AuthUtils {
) {
const correlation = ErrorCorrelator.getInstance().correlateError(ZoweExplorerApiType.All, err, {
templateArgs: {
profileName: profile.name
}
profileName: profile.name,
},
});
void AuthUtils.promptForAuthentication(err, profile, correlation).catch(
(error) => error instanceof Error && ZoweLogger.error(error.message)
Expand Down

0 comments on commit 390505d

Please sign in to comment.