Skip to content

Commit 9f0e212

Browse files
committed
Use unused variables
1 parent 6bdd459 commit 9f0e212

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/components/elements/layout/SidebarLayout.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ const AssignmentStatusCheckbox = (props: AssignmentStatusCheckboxProps) => {
315315
id={status ?? ""} filterTitle={status}
316316
onInputChange={() => !statusFilter.includes(status) ? setStatusFilter(c => [...c.filter(s => s !== AssignmentState.ALL), status]) : setStatusFilter(c => c.filter(s => s !== status))}
317317
checked={statusFilter.includes(status)}
318-
count={count}
318+
count={count} {...rest}
319319
/>;
320320
};
321321

@@ -333,7 +333,7 @@ const AssignmentStatusAllCheckbox = (props: Omit<AssignmentStatusCheckboxProps,
333333
}
334334
}}
335335
checked={statusFilter.includes(AssignmentState.ALL)}
336-
count={count}
336+
count={count} {...rest}
337337
/>;
338338
};
339339

0 commit comments

Comments
 (0)