mirror of
https://github.com/lemeow125/Borrowing-TrackerFrontend.git
synced 2024-11-17 06:19:27 +08:00
fix typo on borrower section
This commit is contained in:
parent
d37ed5aea7
commit
fcc574d19e
2 changed files with 2 additions and 1 deletions
|
@ -210,7 +210,7 @@ export default function TransactionPDF(props: props) {
|
||||||
{"\n"}
|
{"\n"}
|
||||||
Section:{" "}
|
Section:{" "}
|
||||||
<Text style={{ textDecoration: "underline" }}>
|
<Text style={{ textDecoration: "underline" }}>
|
||||||
{props.transaction.section}
|
{props.transaction.borrower.section}
|
||||||
</Text>
|
</Text>
|
||||||
</Text>
|
</Text>
|
||||||
</View>
|
</View>
|
||||||
|
|
|
@ -126,6 +126,7 @@ export type TransactionType = {
|
||||||
id: number;
|
id: number;
|
||||||
name: string;
|
name: string;
|
||||||
course: string;
|
course: string;
|
||||||
|
section: string;
|
||||||
};
|
};
|
||||||
teacher: {
|
teacher: {
|
||||||
id: number;
|
id: number;
|
||||||
|
|
Loading…
Reference in a new issue