Yup.. So you can use it like this: ``` <ThirdParty...
# general
r
Yup.. So you can use it like this:
Copy code
<ThirdPartyEmailPasswordAuthNoSSR requireAuth={false}>
  <YourComponent />
</ThirdPartyEmailPasswordAuthNoSSR>
About the TS complaint, for now, you can do something like this (as a hack.. until we fix it):
Copy code
<ThirdPartyEmailPasswordAuthNoSSR {...{requireAuth: false} as any}}>
  <YourComponent />
</ThirdPartyEmailPasswordAuthNoSSR>
2 Views