refactor(FE-137): remove redundant status column from RecordingTable

This commit is contained in:
rstubryan
2025-10-27 06:28:51 +07:00
parent 4b9d0d2064
commit 9143248e1d
@@ -611,13 +611,6 @@ const RecordingTable = () => {
header: 'Populasi Akhir',
cell: (props) => (props.row.original.total_chick - props.row.original.total_depletion)?.toLocaleString() || '-',
},
{
header: 'Status Recording',
cell: (props) => {
const status = props.row.original.status;
return status === 1 ? 'Menunggu Persetujuan' : 'Disetujui';
},
},
{
header: 'Ketepatan Waktu',
cell: (props) => props.row.original.ontime ? 'Tepat Waktu' : 'Terlambat',