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 fbb09f2 commit b24ac47Copy full SHA for b24ac47
docs/guides/development/custom-flows/authentication/oauth-connections.mdx
@@ -68,14 +68,13 @@ You must configure your application instance through the Clerk Dashboard for the
68
export default function Page() {
69
// Handle the redirect flow by calling the Clerk.handleRedirectCallback() method
70
// or rendering the prebuilt <AuthenticateWithRedirectCallback/> component.
71
- return
72
- ;<>
+ return (<>
73
<AuthenticateWithRedirectCallback />
74
75
{/* Required for sign-up flows
76
Clerk's bot sign-up protection is enabled by default */}
77
<div id="clerk-captcha" />
78
- </>
+ </>);
79
}
80
```
81
</CodeBlockTabs>
0 commit comments