TD-29: Registration Form Created
All checks were successful
Quality Check / Linting (push) Successful in 23s
Quality Check / Linting (pull_request) Successful in 23s

This commit is contained in:
Dorian Nemec 2025-02-12 14:20:47 +01:00
parent a6a62d7563
commit 04ab9ce4dc

View file

@ -32,7 +32,7 @@ export class RegistrationFormComponent {
}
this.serverApi
.playerRegister(this.registrationForm.value)
.subscribe((response) => {
.subscribe(() => {
this.notifications.publish('Registered successfully!', NotificationType.Information);
});
}