This commit is contained in:
Park Byung Eun 2022-08-20 07:27:28 +00:00
parent 3046c848a4
commit 5036e4c1a3

View File

@ -103,7 +103,11 @@ export class SignUpComposeComponent implements OnInit {
/**
* Send the message
*/
send(): void {}
send(): void {
if (!this.signupComposeForm.valid) {
return;
}
}
__checkUsernameDuplicate(event: FocusEvent): void {
const username = this.signupComposeForm.get('username')?.value;