From 87510b89af08f7eeca5f41ec680ecfc675807e99 Mon Sep 17 00:00:00 2001 From: McCarthy <121826239+mccarthyaaron@users.noreply.github.com> Date: Tue, 14 May 2024 15:20:45 +0300 Subject: [PATCH] changed default value of allowAllDayAppointments in the config-schema to false (#1113) --- packages/esm-appointments-app/src/config-schema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/esm-appointments-app/src/config-schema.ts b/packages/esm-appointments-app/src/config-schema.ts index 08d6fde96..6fc64412f 100644 --- a/packages/esm-appointments-app/src/config-schema.ts +++ b/packages/esm-appointments-app/src/config-schema.ts @@ -88,7 +88,7 @@ export const configSchema = { allowAllDayAppointments: { _type: Type.Boolean, _description: 'Whether to allow scheduling of all-day appointments (vs appointments with start time and end time)', - _default: true, + _default: false, }, checkInButton: { enabled: {