Add new frontend - fix 15

This commit is contained in:
Urtzi Alfaro
2025-07-22 23:01:34 +02:00
parent 09f33519d9
commit e6b0be0c95
4 changed files with 29 additions and 12 deletions

View File

@@ -52,7 +52,7 @@ export class AuthService {
*/
async register(userData: RegisterRequest): Promise<TokenResponse> {
const response = await apiClient.post<ApiResponse<TokenResponse>>(
'/auth/register',
'/api/v1/auth/register',
userData
);