From 32315135377fefb3e3cbe1d7a04be14d4f89dbd2 Mon Sep 17 00:00:00 2001 From: suvarnakale Date: Mon, 1 Jul 2024 17:14:14 +0530 Subject: [PATCH] Issue #0000 chore: resolved build issue --- src/utils/Interfaces.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/utils/Interfaces.ts b/src/utils/Interfaces.ts index fc8b3f24..2cbaeb26 100644 --- a/src/utils/Interfaces.ts +++ b/src/utils/Interfaces.ts @@ -41,7 +41,7 @@ export interface UserAttendanceObj { attendance: string; //Mandatory name?: string; attendanceDate?: Date | string; - memberStatus?: string; + memberStatus?: string; } export interface BulkAttendanceParams { @@ -78,7 +78,7 @@ export interface cohortMemberList { filters: { cohortId: string; role?: string; - status?: string[] + status?: string[]; }; } @@ -252,6 +252,8 @@ export interface LearnerListProps { statusReason: string; reloadState: boolean; setReloadState: React.Dispatch>; + block?: string; + center?: string; } export interface FacilitatorListParam { limit: number; @@ -264,7 +266,7 @@ export interface FacilitatorListParam { } export interface DropoutMember { - userId: string | number; + userId: string | number; name: string; memberStatus: string; }