@ilife-tech/react-application-flow-renderer 1.3.42 → 1.3.43
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -0
- package/dist/example.js +19 -19
- package/dist/example.js.map +1 -1
- package/dist/index.js +19 -19
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -566,6 +566,9 @@ const MyForm = () => {
|
|
|
566
566
|
Authorization: `Bearer ${process.env.REACT_APP_API_TOKEN}`,
|
|
567
567
|
},
|
|
568
568
|
timeout: 5000,
|
|
569
|
+
// Note: API helpers in this repo default to `credentials: 'same-origin'`.
|
|
570
|
+
// If your backend relies on cookies for auth and you need cross-origin cookies, opt-in to:
|
|
571
|
+
// { credentials: 'include' } and ensure you also have proper CSRF protections.
|
|
569
572
|
};
|
|
570
573
|
|
|
571
574
|
return (
|