refactor(FE): Update column header and adjust table margin

This commit is contained in:
rstubryan
2026-02-19 13:52:32 +07:00
parent 1bdf413650
commit 40b3d779bc
@@ -101,7 +101,7 @@ const ClosingsTable = () => {
const closingsColumns: ColumnDef<Closing>[] = [
{
header: '#',
header: 'No',
cell: (props) => props.row.index + 1,
},
{
@@ -273,7 +273,7 @@ const ClosingsTable = () => {
setRowSelection={setRowSelection}
className={{
containerClassName: cn({
'w-full mb-20':
'w-full mb-0':
isResponseSuccess(closings) && closings?.data?.length === 0,
}),
}}