mirror of
https://github.com/lemeow125/Borrowing-TrackerFrontend.git
synced 2024-11-17 06:19:27 +08:00
Fix typo in TransactionType with consumables
This commit is contained in:
parent
60759d50a2
commit
c2adea5ec8
2 changed files with 2 additions and 2 deletions
|
@ -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 }}>
|
||||||
|
|
|
@ -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>;
|
||||||
|
|
Loading…
Reference in a new issue