The Open Web articles.
- Chrome Extensions Manifest V3 some common manifest issues - Some permissions only work is specific platforms. For my standard Windows environment, the following permissions resulted in the following warnings: ‘documentScan’ is not allowed for specified platform. ‘enterprise.platformKeys’ is not allowed for specified platform. ‘fileBrowserHandler’ is not allowed for specified platform. ‘fileSystemProvider’ is not allowed for specified platform. ‘platformKeys’ is not allowed for specified platform. … Continue reading Chrome Extensions Manifest V3 some common manifest issues
- How to pre-check or pre-validate form data before submission in React Hook Form? - In React Hook Form, when a form has errors in it, it won’t emit the submit event normally. However, sometimes it is important to manually handle form validity such as when using validation information from a server. In that case, it is possible to manually handle the validation via the “mode” property of useForm options … Continue reading How to pre-check or pre-validate form data before submission in React Hook Form?
- React Hook Form – Nested useForm in FormProvider? What is recommended? What about for a modal? Elsewhere in DOM via portal? - In React Hook Form, it is a little confusing how to separate multiple input areas in a page. For example, there may be multiple forms, inputs in completely different areas of the page, modals opening from different triggers, etc. If you check the Dev Tools, you might see warnings when a form tag is used … Continue reading React Hook Form – Nested useForm in FormProvider? What is recommended? What about for a modal? Elsewhere in DOM via portal?