Skip to content

Commit

Permalink
ECER-966: minor warning fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Farzad committed Mar 22, 2024
1 parent f73194d commit e71414d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ export default defineComponent({
lastName: this.lastName,
emailAddress: this.email,
phoneNumber: this.phoneNumber,
hours: parseInt(this.hours),
hours: parseInt(this.hours!.toString()),
};
// see if we already have a clientId (which is edit), if not use the newClientId (which is add)
Expand Down

0 comments on commit e71414d

Please sign in to comment.