Skip to content

Commit

Permalink
Adding PR suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobMGEvans committed Jul 15, 2024
1 parent 0e55807 commit e8054d7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ import {

function App() {
return (
<div>
<header>
<SignedOut>
<SignInButton />
</SignedOut>
<SignedIn>
<UserButton />
</SignedIn>
</div>
</header>
);
}

Expand Down
2 changes: 1 addition & 1 deletion src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ if (!PUBLISHABLE_KEY) {

ReactDOM.createRoot(document.getElementById('root')!).render(
<React.StrictMode>
<ClerkProvider publishableKey={PUBLISHABLE_KEY}>
<ClerkProvider publishableKey={PUBLISHABLE_KEY} afterSignOutUrl="/">
<App />
</ClerkProvider>
</React.StrictMode>
Expand Down

0 comments on commit e8054d7

Please sign in to comment.