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 Dec 21, 2023
1 parent 1785a18 commit 39b3e3d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,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 39b3e3d

Please sign in to comment.