Skip to content

Commit

Permalink
update VateudCoreLibrary.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
paulhollmann committed May 9, 2024
1 parent 8effe00 commit 6dfca1d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions backend/src/libraries/vateud/VateudCoreLibrary.ts
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ export async function createSolo(userSolo: UserSolo, endorsementGroup: Endorseme
user_id: userSolo.user_id,
position: endorsementGroup.name,
instructor_cid: userSolo.created_by,
starts_at: userSolo.current_solo_start?.toString() ?? "",
expires_at: userSolo.current_solo_end?.toString() ?? "",
starts_at: userSolo.current_solo_start?.toISOString() ?? "",
expires_at: userSolo.current_solo_end?.toISOString() ?? "",
},
};

Expand Down

0 comments on commit 6dfca1d

Please sign in to comment.