Skip to content

Commit

Permalink
Task: remove unnecessary select message (#5619)
Browse files Browse the repository at this point in the history
  • Loading branch information
thewahome authored Oct 17, 2024
1 parent 55fcfc4 commit 451e73b
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,6 @@ export class SearchOrOpenApiDescriptionCommand extends Command {
if (config.descriptionPath) {
await openTreeViewWithProgress(() => this._openApiTreeProvider.setDescriptionUrl(config.descriptionPath!));
}
await vscode.window.showInformationMessage(vscode.l10n.t('You can now select the required endpoints from {0}', this._openApiTreeProvider.apiTitle!));
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,6 @@ export class OpenApiTreeProvider implements vscode.TreeDataProvider<OpenApiTreeN
}
await updateTreeViewIcons(treeViewId, true, false);
}
void vscode.window.showInformationMessage(vscode.l10n.t('You can now select the required endpoints from {0}', this.apiTitle!));
}
}
getCollapsedState(node: KiotaOpenApiNode): vscode.TreeItemCollapsibleState {
Expand Down

0 comments on commit 451e73b

Please sign in to comment.