Skip to content

Commit

Permalink
[ACS-5994] cr fix
Browse files Browse the repository at this point in the history
  • Loading branch information
nikita-web-ua committed Oct 25, 2023
1 parent a4521c1 commit 5656b29
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ export class NodesApi extends RepoApi {
async deleteNodesById(ids: string[], permanent: boolean = true): Promise<void> {
try {
await this.apiAuth();
await this.nodesApi.deleteNodes(ids, {permanent});
await this.nodesApi.deleteNodes(ids, { permanent });
} catch (error) {
this.handleError(`${this.constructor.name} ${this.deleteNodesById.name}`, error);
}
Expand Down

0 comments on commit 5656b29

Please sign in to comment.