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
c2adea5ec8
commit
81cb18dc5c
2 changed files with 2 additions and 2 deletions
|
@ -110,7 +110,7 @@ export default function TransactionPDF(props: props) {
|
|||
flexWrap: "wrap",
|
||||
}}
|
||||
>
|
||||
Consumables: {props.transaction.consumable}
|
||||
Consumables: {props.transaction.consumables}
|
||||
</Text>
|
||||
</View>
|
||||
<View style={{ flex: 1 }}>
|
||||
|
|
|
@ -311,7 +311,7 @@ export default function TransactionsListPage() {
|
|||
}
|
||||
}}
|
||||
>
|
||||
{transaction.consumable}
|
||||
{transaction.consumables}
|
||||
</TableCell>
|
||||
<TableCell align="center">
|
||||
<p style={{ ...styles.text_M, ...styles.text_dark }}>
|
||||
|
|
Loading…
Reference in a new issue