Switched the create classes over to the new address implementation

ref #105
This commit is contained in:
2021-01-16 16:55:30 +01:00
parent dafac06bc8
commit 2cd15d25e9
5 changed files with 13 additions and 48 deletions

View File

@@ -30,7 +30,7 @@ export class CreateRunner extends CreateParticipant {
newRunner.phone = this.phone;
newRunner.email = this.email;
newRunner.group = await this.getGroup();
newRunner.address = await this.getAddress();
newRunner.address = this.address;
return newRunner;
}