fix case issues on userName
All checks were successful
Build and Deploy Frontend / build-and-deploy (push) Successful in 7s

This commit is contained in:
2026-04-21 21:06:52 -05:00
parent 1350284b79
commit 30214bd212
4 changed files with 8 additions and 8 deletions

View File

@@ -10,7 +10,7 @@ import * as authApi from "../api/AuthApi";
const router = useRouter();
const user = reactive<RegisterDto>({ // the template ensures type consistency
username: "",
userName: "",
email: "",
password: "",
});
@@ -40,7 +40,7 @@ async function register(): Promise<void> {
<h2>Register</h2>
<form @submit.prevent="register">
<input v-model="user.username" placeholder="username" />
<input v-model="user.userName" placeholder="username" />
<input v-model="user.email" placeholder="email" />
<input v-model="user.password" placeholder="password" />