@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 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 (