Skip to content

Commit b24ac47

Browse files
authored
Fix return statement formatting in OAuth connections guide (#2674)
1 parent fbb09f2 commit b24ac47

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

docs/guides/development/custom-flows/authentication/oauth-connections.mdx

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -68,14 +68,13 @@ You must configure your application instance through the Clerk Dashboard for the
6868
export default function Page() {
6969
// Handle the redirect flow by calling the Clerk.handleRedirectCallback() method
7070
// or rendering the prebuilt <AuthenticateWithRedirectCallback/> component.
71-
return
72-
;<>
71+
return (<>
7372
<AuthenticateWithRedirectCallback />
7473

7574
{/* Required for sign-up flows
7675
Clerk's bot sign-up protection is enabled by default */}
7776
<div id="clerk-captcha" />
78-
</>
77+
</>);
7978
}
8079
```
8180
</CodeBlockTabs>

0 commit comments

Comments
 (0)