[master]: Fix url of manager invite.

This commit is contained in:
Konstantinos Triantafyllou 2024-03-06 15:04:07 +02:00
parent cd4a5faf38
commit 9928de9e4c
1 changed files with 3 additions and 1 deletions

View File

@ -97,7 +97,9 @@ export class UsersComponent extends StakeholderBaseComponent {
url = url + '/rpo/' + id;
} else if(this.stakeholder.type === 'datasource') {
url = url + '/repository/' + id;
} else if(this.stakeholder.type === 'country') {
url = url + '/national';
}
return url + "/national?verify=";
return url + "?verify=";
}
}