bug fixed
This commit was merged in pull request #801.
This commit is contained in:
@@ -73,26 +73,26 @@ export default function FamilyTableNew() {
|
||||
|
||||
// Object that maps tab names to their corresponding components
|
||||
const tabComponents = {
|
||||
Tasks: (
|
||||
tasks: (
|
||||
<FamilyTasks
|
||||
familyData={familyTasks}
|
||||
action={familyAssignPopUpHandler}
|
||||
/>
|
||||
),
|
||||
Waiting: (
|
||||
waiting: (
|
||||
<FamilyWaitlist
|
||||
familyData={familyWaitList}
|
||||
setUpdatePage={setUpdatePage}
|
||||
/>
|
||||
),
|
||||
Pending: (
|
||||
pending: (
|
||||
<FamilyPending
|
||||
familyData={familyPending}
|
||||
/>
|
||||
),
|
||||
};
|
||||
|
||||
const defaultTabComponent = tabComponents.Tasks;
|
||||
const defaultTabComponent = tabComponents.tasks;
|
||||
|
||||
// Selected tab component based on the current 'tab'
|
||||
const selectedTabComponent = tabComponents[tab] || defaultTabComponent;
|
||||
|
||||
Reference in New Issue
Block a user