Closed as not planned
Description
Hi!
I was wondering if there's any support to directly prefill or "force" a custom pre-defined value for an inAppWallet
auth option in the ConnectEmbed
component.
For example, when the component is configured as follows:
<ConnectEmbed
client={client}
wallets={[inAppWallet({ auth: { options: ["email"] } })]}
/>
a custom pre-defined john@gmail.com
value could be passed:
<ConnectEmbed
client={client}
wallets={[inAppWallet({ auth: { options: ["email"], values: ["john@gmail.com"] } })]}
/>
This allows pre-filling the connect widget when an invite-based system is in place, where users are invited via email - therefore an exact value must be enforced at the signup time.