diff --git a/src/Umbraco.Web.UI.Client/src/packages/documents/documents/modals/schedule-modal/document-schedule-modal.stories.ts b/src/Umbraco.Web.UI.Client/src/packages/documents/documents/modals/schedule-modal/document-schedule-modal.stories.ts index 7ee6a08e9a..120f4833a5 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/documents/documents/modals/schedule-modal/document-schedule-modal.stories.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/documents/documents/modals/schedule-modal/document-schedule-modal.stories.ts @@ -56,7 +56,7 @@ const modalData: UmbDocumentScheduleModalData = { }; const modalValue: UmbDocumentScheduleModalValue = { - selection: ['en-us'], + selection: [{ unique: 'en-us', schedule: null }], }; const meta: Meta = { @@ -103,7 +103,10 @@ this.consumeContext(UMB_MODAL_MANAGER_CONTEXT, (modalManager) => { }, }, ], - } + }, + value: { + selection: [{ unique: 'en-us', schedule: null }], + }, }).onSubmit().catch(() => undefined); }); `,