Skip to content

Commit

Permalink
fix(): try async
Browse files Browse the repository at this point in the history
  • Loading branch information
jordantsanz committed Nov 27, 2024
1 parent 603ac70 commit 8596e2f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/common/src/events/_internal/EventSchemaCreate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export const EventEditorTypes = [
export const buildSchema = (): IConfigurationSchema => {
const { startDate } = getDefaultEventDatesAndTimes();
return {
$async: true,
required: ["name", "startDate", "endDate"],
properties: {
name: ENTITY_NAME_SCHEMA,
Expand Down
1 change: 1 addition & 0 deletions packages/common/src/events/_internal/EventSchemaEdit.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import {
*/
export const buildSchema = (): IConfigurationSchema => {
return {
$async: true,
required: ["name", "startDate", "endDate", "timeZone"],
properties: {
name: ENTITY_NAME_SCHEMA,
Expand Down

0 comments on commit 8596e2f

Please sign in to comment.