diff --git a/README.md b/README.md index 7135cad..a236eb6 100644 --- a/README.md +++ b/README.md @@ -54,8 +54,9 @@ cp .env.example .env 1. Go to [thirdweb Dashboard](https://thirdweb.com/dashboard) and sign in or create an account 2. Create a new project or select an existing one -3. Copy the Client ID from your project settings -4. Add this Client ID as the value for `EXPO_PUBLIC_THIRDWEB_CLIENT_ID` in your `.env` file: +3. Make sure to check the allow-all-domains flag in the Allowed domains section. +4. Copy the Client ID from your project settings +5. Add this Client ID as the value for `EXPO_PUBLIC_THIRDWEB_CLIENT_ID` in your `.env` file: ``` EXPO_PUBLIC_THIRDWEB_CLIENT_ID=your_client_id_here diff --git a/app/index.tsx b/app/index.tsx index f694bb7..764b04e 100644 --- a/app/index.tsx +++ b/app/index.tsx @@ -154,7 +154,7 @@ export default function TransferScreen() { wallets={[ inAppWallet({ auth: { - options: ["email"], + options: ["email", "wallet"], }, }), ]} @@ -256,7 +256,7 @@ export default function TransferScreen() { wallets={[ inAppWallet({ auth: { - options: ["email"], + options: ["email", "wallet"], }, }), ]}