Skip to content

Commit 5b9f621

Browse files
authored
chore(svelte): rm paragraph tag with many different children in docs example code (#10181)
1 parent d71f9ba commit 5b9f621

File tree

1 file changed

+2
-2
lines changed
  • packages/frameworks-sveltekit/src/lib

1 file changed

+2
-2
lines changed

packages/frameworks-sveltekit/src/lib/index.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@
6868
* </script>
6969
*
7070
* <h1>SvelteKit Auth Example</h1>
71-
* <p>
71+
* <div>
7272
* {#if $page.data.session}
7373
* {#if $page.data.session.user?.image}
7474
* <span
@@ -87,7 +87,7 @@
8787
* <SignIn provider="google"/>
8888
* <SignIn provider="facebook"/>
8989
* {/if}
90-
* </p>
90+
* </div>
9191
* ```
9292
*
9393
* `<SignIn />` and `<SignOut />` are components that `@auth/sveltekit` provides out of the box - they handle the sign-in/signout flow, and can be used as-is as a starting point or customized for your own components.

0 commit comments

Comments
 (0)