docs: Remove asterisk that causes build error in oauth-tutorial.mdx (#8666)

Update oauth-tutorial.mdx

Remove * from example that's causing an unexpected character error
This commit is contained in:
Kyle Roberts
2023-09-20 14:47:40 -04:00
committed by GitHub
parent 6448a7b76e
commit 5a7c1bb2bb

View File

@@ -205,7 +205,7 @@ Create the following [Server hook](https://kit.svelte.dev/docs/hooks) file. This
import { SvelteKitAuth } from "@auth/sveltekit"
import GitHub from "@auth/core/providers/github"
import { GITHUB_ID, GITHUB_SECRET } from "$env/static/private"
*
export const handle = SvelteKitAuth({
providers: [GitHub({ clientId: GITHUB_ID, clientSecret: GITHUB_SECRET })],
})