diff --git a/src/components/table/table.tsx b/src/components/table/table.tsx index 3b4d670f..958b2583 100644 --- a/src/components/table/table.tsx +++ b/src/components/table/table.tsx @@ -135,7 +135,7 @@ function EnhancedTableToolbar({ }: EnhancedTableToolbarProps) { return ( <> - {totalRows === 0 ? ( + {totalRows === 0 && type === "Students" ? (

{type}

) : ( - {people.length === 0 && !showInput && ( + {people.length === 0 && !showInput && type === "Students" && ( )} - {(people.length || showInput) && ( + {(people.length || showInput || type === "Staff") && (