From 4b10219b79722fef7720939c190e206eb9908158 Mon Sep 17 00:00:00 2001 From: Shubham Agrawal Date: Tue, 31 Dec 2024 22:39:43 +0530 Subject: [PATCH] Fixing types --- src/libs/API/parameters/VerifyIdentityForBankAccountParams.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libs/API/parameters/VerifyIdentityForBankAccountParams.ts b/src/libs/API/parameters/VerifyIdentityForBankAccountParams.ts index 5b7a221a8702..6ef6b3712439 100644 --- a/src/libs/API/parameters/VerifyIdentityForBankAccountParams.ts +++ b/src/libs/API/parameters/VerifyIdentityForBankAccountParams.ts @@ -1,6 +1,6 @@ type VerifyIdentityForBankAccountParams = { bankAccountID: number; onfidoData: string; - policyID?: string; + policyID: string; }; export default VerifyIdentityForBankAccountParams;