From ae777d555870aabb6ccff5fa43608bac0fd94d11 Mon Sep 17 00:00:00 2001 From: Andrew Smith Date: Mon, 8 Jan 2024 01:35:15 +1100 Subject: [PATCH] Fix SvelteKit docs line of text in a cell (#1325) --- docs/pages/tutorials/username-and-password/sveltekit.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/pages/tutorials/username-and-password/sveltekit.md b/docs/pages/tutorials/username-and-password/sveltekit.md index 132fd83b3..523b7e7f6 100644 --- a/docs/pages/tutorials/username-and-password/sveltekit.md +++ b/docs/pages/tutorials/username-and-password/sveltekit.md @@ -17,9 +17,11 @@ npx degit https://github.com/lucia-auth/examples/tree/v3/sveltekit/username-and- Add a `username` and `password` column to your user table. | column | type | attributes | -| ---------- | -------- | ---------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | +| ---------- | -------- | ---------- | | `username` | `string` | unique | -| `password` | `string` | | Create a `DatabaseUserAttributes` interface in the module declaration and add your database columns. By default, Lucia will not expose any database columns to the `User` type. To add a `username` field to it, use the `getUserAttributes()` option. | +| `password` | `string` | | + +Create a `DatabaseUserAttributes` interface in the module declaration and add your database columns. By default, Lucia will not expose any database columns to the `User` type. To add a `username` field to it, use the `getUserAttributes()` option. ```ts import { Lucia } from "lucia";