We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cfc6f9 commit 3bb476bCopy full SHA for 3bb476b
examples/testapp/src/pages/auto-sub-account/index.page.tsx
@@ -237,8 +237,7 @@ export default function AutoSubAccount() {
237
const requests: Array<{ type: string; optional: boolean }> = [];
238
if (dataCallbackConfig.email) requests.push({ type: 'email', optional: false });
239
if (dataCallbackConfig.name) requests.push({ type: 'name', optional: false });
240
- if (dataCallbackConfig.phoneNumber)
241
- requests.push({ type: 'phoneNumber', optional: false });
+ if (dataCallbackConfig.phoneNumber) requests.push({ type: 'phoneNumber', optional: false });
242
243
if (requests.length > 0) {
244
capabilities.dataCallback = {
0 commit comments