Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
silvicir committed May 27, 2024
1 parent 3de3109 commit 5f4c5e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/controllers/ioWalletController.ts
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ export default class IoWalletController {
}) =>
this.ioWalletService.createWalletInstance(
challenge,
key_attestation,
hardware_key_tag,
key_attestation,
userId
)
),
Expand Down Expand Up @@ -135,8 +135,8 @@ export default class IoWalletController {
}),
TE.map(({ body: { grant_type, assertion }, userId }) =>
this.ioWalletService.createWalletAttestation(
grant_type,
assertion,
grant_type,
userId
)
),
Expand Down
4 changes: 2 additions & 2 deletions src/services/ioWalletService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ export default class IoWalletService {
*/
public readonly createWalletInstance = (
challenge: NonEmptyString,
key_attestation: NonEmptyString,
hardware_key_tag: NonEmptyString,
key_attestation: NonEmptyString,
userId: Id
): Promise<
| IResponseErrorInternal
Expand Down Expand Up @@ -133,8 +133,8 @@ export default class IoWalletService {
* Create a Wallet Attestation.
*/
public readonly createWalletAttestation = (
grant_type: Grant_typeEnum,
assertion: NonEmptyString,
grant_type: Grant_typeEnum,
userId: Id
): Promise<
| IResponseErrorInternal
Expand Down

0 comments on commit 5f4c5e4

Please sign in to comment.