From f65a83c0853522b7b55c295d5567d23f1225ec80 Mon Sep 17 00:00:00 2001 From: Nick Hellemans Date: Mon, 21 Aug 2023 17:41:36 +0200 Subject: [PATCH] chore(createAppointment): use proper date field type for appointment date --- extensions/healthie/actions/createAppointment.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/extensions/healthie/actions/createAppointment.ts b/extensions/healthie/actions/createAppointment.ts index e5049334f..f510f7faf 100644 --- a/extensions/healthie/actions/createAppointment.ts +++ b/extensions/healthie/actions/createAppointment.ts @@ -43,7 +43,7 @@ const fields = { id: 'datetime', label: 'Appointment date and time', description: 'The date and time of the appointment in ISO8601 format.', - type: FieldType.STRING, + type: FieldType.DATE, required: true, }, } satisfies Record