Index: app/lib/definitions.ts
===================================================================
--- app/lib/definitions.ts	(revision 8ed7cdd5fd21cef15dbf8927e86921038c314e86)
+++ app/lib/definitions.ts	(revision 836ca43414017c66c3911fc193616a05fda1fc8b)
@@ -3,6 +3,6 @@
 
 export type User = {
-  user_id: string;
-  user_name: string;
+  id: string;
+  name: string;
   email: string;
   password: string;
Index: auth.ts
===================================================================
--- auth.ts	(revision 8ed7cdd5fd21cef15dbf8927e86921038c314e86)
+++ auth.ts	(revision 836ca43414017c66c3911fc193616a05fda1fc8b)
@@ -37,6 +37,6 @@
                     if (passwordsMatch) {
                         return {
-                            id: user.user_id,
-                            name: user.user_name,
+                            id: user.id,
+                            name: user.name,
                             email: user.email,
                         };
