Skip to content

Commit

Permalink
fix: forgot partial in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pksorensen committed Aug 26, 2024
1 parent 9ea3903 commit 858d262
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/state/QuickformAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,5 +19,5 @@ export type QuickformAction =
| { type: 'GO_TO_ENDING' }
| { type: 'ADD_PAYLOAD_AUGMENTER', augmenter: (payload: any) => any }
| { type: 'REMOVE_PAYLOAD_AUGMENTER', augmenter: (payload: any) => any }
| { type: 'UPDATE_QUICKFORM_DEFINITION', definition: QuickFormDefinition }
| { type: 'UPDATE_QUICKFORM_DEFINITION', definition: Partial<QuickFormDefinition> }
;

0 comments on commit 858d262

Please sign in to comment.