Skip to content

Commit e6e9143

Browse files
fix: this commit fixes uri
1 parent cc5d5cc commit e6e9143

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

UIs/Landing/http/clients/profiles-client.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export class ProfilesClient {
1010
}
1111

1212
public async createOwner(parameters: ProfileCreationScheme): Promise<Result<OwnerScheme>> {
13-
var response = await this.httpClient.post("/api/v1/profiles/owner", parameters);
13+
var response = await this.httpClient.post("/api/v1/profiles/owners", parameters);
1414
if (response.status < 200 || response.status >= 300) {
1515
return Result.failure<OwnerScheme>(response.data);
1616
}

0 commit comments

Comments
 (0)