We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b1b1b9 commit be4f021Copy full SHA for be4f021
2 files changed
docs/pages/getting-started/adapters/drizzle.mdx
@@ -55,7 +55,7 @@ import {
55
} from "drizzle-orm/pg-core"
56
import postgres from "postgres"
57
import { drizzle } from "drizzle-orm/postgres-js"
58
-import type { AdapterAccountType } from "@auth/core/adapters";
+import type { AdapterAccountType } from "@auth/core/adapters"
59
60
const connectionString = "postgres://postgres:postgres@localhost:5432/drizzle"
61
const pool = postgres(connectionString, { max: 1 })
docs/pages/getting-started/session-management/get-session.mdx
@@ -170,7 +170,7 @@ Then you can access the `session` on the `$page.data` object in your page.
170
171
```svelte filename="src/routes/+page.svelte" {7}
172
<script lang="ts">
173
- const { data } = $props();
+ const { data } = $props()
174
</script>
175
176
<nav>
0 commit comments