Hey. Are there any difference between going ```ts recipes: [ ThirdParty, EmailPassword ] ``` ...
c
Hey. Are there any difference between going
Copy code
ts
recipes: [
  ThirdParty,
  EmailPassword
]
versus
Copy code
ts
recipes: [
  ThirdPartyEmailPassword
]
?
r
hey @Chimanos the difference mainly comes in the pre built UI. In ThirdPartyEmailPassword, you will see both the login methods in one screen. If you have this:
Copy code
recipes: [
  ThirdParty,
  EmailPassword
]
You will see only one of the login methods at a time based on the
rid
in the query param
c
Ok thanks ☺️
2 Views