Skip to content

Commit

Permalink
Format Auth
Browse files Browse the repository at this point in the history
  • Loading branch information
renatodellosso committed Feb 24, 2025
1 parent 7b9d17f commit f4d1995
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/Auth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ export const AuthenticationOptions: AuthOptions = {
* For email sign in, runs when the "Sign In" button is clicked (before email is sent).
*/
async signIn({ user }) {
console.log(`User is signing in: ${user.name}, ${user.email}, ${user.id}`);
console.log(
`User is signing in: ${user.name}, ${user.email}, ${user.id}`,
);

Analytics.signIn(user.name ?? "Unknown User");
const db = await getDatabase(false);
Expand Down

0 comments on commit f4d1995

Please sign in to comment.