Skip to content

Commit

Permalink
Fix js method
Browse files Browse the repository at this point in the history
  • Loading branch information
NolanTrem committed Jan 7, 2025
1 parent 32158fd commit 646cd2d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions js/sdk/src/v3/clients/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,9 @@ export class UsersClient {
email: string;
}): Promise<WrappedGenericMessageResponse> {
return this.client.makeRequest("POST", "users/send-verification-email", {
data: options,
data: { email: options.email },
});
}

/**
* Delete a specific user.
* Users can only delete their own account unless they are superusers.
Expand Down

0 comments on commit 646cd2d

Please sign in to comment.