Fix typo in TransactionType with consumables

This commit is contained in:
Keannu Bernasol 2024-01-05 19:08:59 +08:00
parent 60759d50a2
commit c2adea5ec8
2 changed files with 2 additions and 2 deletions

View file

@ -120,7 +120,7 @@ export default function TransactionEntry(props: props) {
}, },
}} }}
> >
Consumables: {props.transaction.consumable} Consumables: {props.transaction.consumables}
</p> </p>
</div> </div>
<div style={{ flex: 1 }}> <div style={{ flex: 1 }}>

View file

@ -129,7 +129,7 @@ export type TransactionType = {
timestamp: string; timestamp: string;
remarks: string; remarks: string;
subject: string; subject: string;
consumable: string; consumables: string;
}; };
export type TransactionListType = Array<TransactionType>; export type TransactionListType = Array<TransactionType>;