-
Notifications
You must be signed in to change notification settings - Fork 71
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(chore) Bump form engine lib #356
Conversation
313754b
to
dd7a1de
Compare
@@ -143,7 +142,7 @@ const FormEditorContent: React.FC<TranslationFnProps> = ({ t }) => { | |||
}; | |||
|
|||
const inputDummySchema = useCallback(() => { | |||
const dummySchema: FormSchema = { | |||
const dummySchema: typeof schema = { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@usamaidrsk Is this related to the bump?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking again here, I think I will need to use exported types from the lib i.e , I had added that to fix some type errors after the bump.
Thanks
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think its just that the type label
was made optional in the form engine, and we have to update the interface Schema
in here as well to make label optional, the changes are in PR #355 but it isn't merged in yet
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for the pointer @NethmiRodrigo
I will add that to this PR as the other looks to bring in more changes to wait for it.
dd7a1de
to
ccccb7d
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thanks @usamaidrsk
Requirements
Summary
This PR bumps the form-engine-lib to the latest available version
Screenshots
Related Issue
Other