refactor(FE): Simplify type definition for ReportExpenseColumn

This commit is contained in:
rstubryan
2026-02-13 10:22:13 +07:00
parent 67f2a80f23
commit e9da5210ad
@@ -11,9 +11,7 @@ type ReportExpenseColumn =
columns: Array<{
header: string;
accessorKey?: string;
cell?: (props: {
row: { original: ReportExpense };
}) => React.ReactNode;
cell?: (props: { row: { original: ReportExpense } }) => React.ReactNode;
}>;
};