Skip to content

Commit

Permalink
DOP-4414 fixing small error
Browse files Browse the repository at this point in the history
  • Loading branch information
anabellabuckvar committed Mar 20, 2024
1 parent c0fe254 commit b28d519
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/repositories/jobRepository.ts
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ export class JobRepository extends BaseRepository {
return jobIds;
}

async getJobById(id: string): Promise<Job | null> {
async getJobById(id: string): Promise<any | null> {
const query = {
_id: new objectId(id),
};
Expand Down

0 comments on commit b28d519

Please sign in to comment.