From ca621dffcc169375989abf2e4886bcd6c2a38b06 Mon Sep 17 00:00:00 2001 From: Vlad Shcherbin Date: Tue, 20 Feb 2024 02:28:36 +0300 Subject: [PATCH] Remove unused import (#1445) --- docs/pages/guides/email-and-password/email-verification-codes.md | 1 - docs/pages/guides/email-and-password/email-verification-links.md | 1 - 2 files changed, 2 deletions(-) diff --git a/docs/pages/guides/email-and-password/email-verification-codes.md b/docs/pages/guides/email-and-password/email-verification-codes.md index d77c65040..a9f6fb414 100644 --- a/docs/pages/guides/email-and-password/email-verification-codes.md +++ b/docs/pages/guides/email-and-password/email-verification-codes.md @@ -81,7 +81,6 @@ When a user signs up, set `email_verified` to `false`, create and send a verific ```ts import { generateId } from "lucia"; -import { encodeHex } from "oslo/encoding"; app.post("/signup", async () => { // ... diff --git a/docs/pages/guides/email-and-password/email-verification-links.md b/docs/pages/guides/email-and-password/email-verification-links.md index b58a06f91..c5ea0817b 100644 --- a/docs/pages/guides/email-and-password/email-verification-links.md +++ b/docs/pages/guides/email-and-password/email-verification-links.md @@ -76,7 +76,6 @@ When a user signs up, set `email_verified` to `false`, create and send a verific ```ts import { generateId } from "lucia"; -import { encodeHex } from "oslo/encoding"; app.post("/signup", async () => { // ...