fix: removed console log in work shifts table

This commit is contained in:
2024-12-04 21:09:36 +04:00
parent 2cb62a4e0b
commit e92fcb5eb8

View File

@@ -18,7 +18,6 @@ const useWorkShiftsTable = () => {
itemsPerPage: 10, itemsPerPage: 10,
}) })
.then(res => { .then(res => {
console.log(res.shifts);
setShifts(res.shifts); setShifts(res.shifts);
setTotalPages(res.paginationInfo.totalPages); setTotalPages(res.paginationInfo.totalPages);
}) })