From 4ac312db4fe19e6fe126ab00730c83e24e471ce8 Mon Sep 17 00:00:00 2001 From: tahmidrahman-dsi Date: Thu, 9 Jan 2025 19:30:17 +0600 Subject: [PATCH] fix: improve naming --- src/form/types/types.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/form/types/types.ts b/src/form/types/types.ts index 881bf32e..01c07a25 100644 --- a/src/form/types/types.ts +++ b/src/form/types/types.ts @@ -534,7 +534,7 @@ export interface IIDReaderFormField extends IFormFieldBase { } export type BannerType = 'pending' | 'verified' | 'failed' -export interface IBannerFormField extends IFormFieldBase { +export interface IIDVerificationBannerFormField extends IFormFieldBase { type: typeof ID_VERIFICATION_BANNER bannerType: BannerType idFieldName: string @@ -576,7 +576,7 @@ export type IFormField = | IIDReaderFormField | ILinkButtonFormField | IHttpFormField - | IBannerFormField + | IIDVerificationBannerFormField export interface SelectComponentOption { value: string