a tool for shared writing and social publishing
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

lowercase email on login

+2 -1
+2 -1
actions/emailAuth.ts
··· 39 39 }); 40 40 } 41 41 42 - export async function requestAuthEmailToken(email: string) { 42 + export async function requestAuthEmailToken(emailNonNormalized: string) { 43 + let email = emailNonNormalized.toLowerCase(); 43 44 const client = postgres(process.env.DB_URL as string, { idle_timeout: 5 }); 44 45 const db = drizzle(client); 45 46