IO-1307 Resolve selection issues on export tables.

This commit is contained in:
Patrick Fic
2021-08-18 13:18:30 -07:00
parent 0190e737c1
commit ba5400d04a
3 changed files with 3 additions and 3 deletions

View File

@@ -145,7 +145,7 @@ export function PayableExportButton({
}
if (setSelectedBills) {
setSelectedBills((selectedBills) => {
return selectedBills.filter((i) => i.id !== billId);
return selectedBills.filter((i) => i !== billId);
});
}
}