Skip to content

Commit

Permalink
Prettier changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-yau-ttd committed Sep 11, 2023
1 parent 69338de commit 7b25acc
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions src/uid2Sdk.ts
Original file line number Diff line number Diff line change
Expand Up @@ -256,17 +256,17 @@ export class UID2 {

private getIdentityStatus(identity: Uid2Identity | null):
| {
valid: true;
identity: Uid2Identity;
errorMessage: string;
status: IdentityStatus;
}
valid: true;
identity: Uid2Identity;
errorMessage: string;
status: IdentityStatus;
}
| {
valid: false;
errorMessage: string;
status: IdentityStatus;
identity: null;
} {
valid: false;
errorMessage: string;
status: IdentityStatus;
identity: null;
} {
if (!identity) {
return {
valid: false,
Expand Down Expand Up @@ -438,7 +438,7 @@ export class UID2 {
}

private async callCstgAndSetIdentity(
request: { emailHash: string } | { phoneHash: string },
request: { emailHash: string; } | { phoneHash: string; },
opts: ClientSideIdentityOptions
) {
const cstgResult = await this._apiClient!.callCstgApi(request, opts);
Expand Down

0 comments on commit 7b25acc

Please sign in to comment.