Skip to content

Commit

Permalink
fix: use const for unchanged variable in createRecruitmentSession ser…
Browse files Browse the repository at this point in the history
…vice method
  • Loading branch information
AlbertoBaroso committed Jan 21, 2024
1 parent f40d727 commit 3bcac19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/recruitment-session/recruitment-session.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export class RecruitmentSessionService {
async createRecruitmentSession(
recruitmentSession: CreateRecruitmentSessionDto,
): Promise<RecruitmentSession> {
let now = new Date();
const now = new Date();
const rs = {
...recruitmentSession,
state: RecruitmentSessionState.Active,
Expand Down

0 comments on commit 3bcac19

Please sign in to comment.