Skip to content

Commit

Permalink
Resend Verification Email JS (#1767)
Browse files Browse the repository at this point in the history
  • Loading branch information
NolanTrem authored Jan 7, 2025
1 parent e2c1804 commit fe54b6e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion js/sdk/src/v3/clients/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,10 @@ export class UsersClient {
email: string;
}): Promise<WrappedGenericMessageResponse> {
return this.client.makeRequest("POST", "users/send-verification-email", {
data: { email: options.email },
data: options.email,
headers: {
"Content-Type": "text/plain",
},
});
}
/**
Expand Down

0 comments on commit fe54b6e

Please sign in to comment.