Skip to content

Commit 033492e

Browse files
committed
Adding metadata and proper gating
1 parent 8aefb5b commit 033492e

2 files changed

Lines changed: 6 additions & 7 deletions

File tree

app/layout.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import "./globals.css";
33
import { Nav } from "../src/components/Nav";
44
import { Clerk } from "../src/components/Auth/clerk";
55
import { Toaster } from "../src/components/ui/toaster";
6-
import { Footer } from "../src/features/footer";
76
import { Metadata } from "next";
87
import { JSChileApolloProvider } from "../src/components/ApolloProvider";
98

src/components/Auth/clerk.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ export const Clerk = ({ children }: Props) => {
1010
return (
1111
<ClerkProvider
1212
isSatellite={process.env.NEXT_PUBLIC_CLERK_IS_SATELLITE === "true"}
13-
domain={(url) => url.host}
14-
signInUrl={
15-
process.env.NEXT_PUBLIC_SIGN_IN_URL
16-
? process.env.NEXT_PUBLIC_SIGN_IN_URL
17-
: undefined
18-
}
13+
domain={(url) => "jsconf.dev"}
14+
// signInUrl={
15+
// process.env.NEXT_PUBLIC_SIGN_IN_URL
16+
// ? process.env.NEXT_PUBLIC_SIGN_IN_URL
17+
// : undefined
18+
// }
1919
publishableKey={process.env.NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY}
2020
>
2121
{children}

0 commit comments

Comments
 (0)