Skip to content

Commit

Permalink
Reorder parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
pauljohanneskraft committed Sep 18, 2024
1 parent 91624bd commit 14d735b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions functions/models/src/types/userMessage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -151,8 +151,8 @@ export class UserMessage {

static createMedicationUptitrationForClinician(input: {
creationDate?: Date
userName?: string
userId: string
userName?: string
}): UserMessage {
return new UserMessage({
creationDate: input.creationDate ?? new Date(),
Expand Down Expand Up @@ -269,8 +269,8 @@ export class UserMessage {

static createWeightGainForClinician(input: {
creationDate?: Date
userName?: string
userId: string
userName?: string
}): UserMessage {
return new UserMessage({
creationDate: input.creationDate ?? new Date(),
Expand Down

0 comments on commit 14d735b

Please sign in to comment.