Skip to content

Commit

Permalink
add typename
Browse files Browse the repository at this point in the history
  • Loading branch information
Forfold committed Jan 24, 2024
1 parent 31abf91 commit e51eaca
Showing 1 changed file with 11 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -98,15 +98,18 @@ export default function CalendarSubscribeCreateDialog(
onSubmit={() =>
isComplete
? props.onClose()
: commit({
input: {
scheduleID: value.scheduleID,
name: value.name,
reminderMinutes: [0], // default reminder at shift start time
disabled: false,
fullSchedule: value.fullSchedule,
: commit(
{
input: {
scheduleID: value.scheduleID,
name: value.name,
reminderMinutes: [0], // default reminder at shift start time
disabled: false,
fullSchedule: value.fullSchedule,
},
},
})
{ additionalTypenames: ['User'] },
)
}
form={getForm(isComplete, form, status.data)}
/>
Expand Down

0 comments on commit e51eaca

Please sign in to comment.