Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kennsippell committed Dec 20, 2024
1 parent a0c5042 commit 7823306
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/lib/cht-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ export class ChtApi {
const payload = {
keys,
include_docs: true,
};
};

console.log('axios.post', url);
const resp = await this.axiosInstance.post(url, payload);
Expand Down
3 changes: 1 addition & 2 deletions src/lib/manage-hierarchy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,7 @@ export type WarningInformation = {
export default class ManageHierarchyLib {
private constructor() { }

public static async scheduleJob(job: JobParams, queueName: IQueue = getChtConfQueue()
) {
public static async scheduleJob(job: JobParams, queueName: IQueue = getChtConfQueue()) {
await queueName.add(job);

return {
Expand Down

0 comments on commit 7823306

Please sign in to comment.