diff --git a/apps/web/app/[locale]/timesheet/[memberId]/components/SelectionBar.tsx b/apps/web/app/[locale]/timesheet/[memberId]/components/SelectionBar.tsx index 3f4a0d28f..5cdf3bfa1 100644 --- a/apps/web/app/[locale]/timesheet/[memberId]/components/SelectionBar.tsx +++ b/apps/web/app/[locale]/timesheet/[memberId]/components/SelectionBar.tsx @@ -15,7 +15,23 @@ const ActionButton = ({ label, onClick }: ActionButtonProps) => ( ); -export const SelectionBar = ({ fullWidth }: { fullWidth: boolean }) => { +interface SelectionBarProps { + fullWidth: boolean; + selectedCount: number; + onApprove: () => void; + onReject: () => void; + onDelete: () => void; + onClearSelection: () => void; +} + +export const SelectionBar = ({ + fullWidth, + selectedCount, + onApprove, + onReject, + onDelete, + onClearSelection +}: SelectionBarProps) => { const t = useTranslations() return (