Fix standalone problem

pull/2/head
Alvaro Puente Mella 2024-05-22 13:45:16 +02:00
parent 3f0906d8c7
commit c42a61bf3d
1 changed files with 1 additions and 1 deletions

View File

@ -16,6 +16,6 @@ export class LoginComponent {
};
constructor(private http: HttpClient) { }
onLogin() {
this.http.post('https://freeapi.gerasim.in/api/User/Login', this.loginObj)
this.http.post('https://freeapi.gerasim.in/api/User/Login', this.loginObj).subscribe((res: any) => {})
}
}