fix typo on borrower section

This commit is contained in:
Keannu Bernasol 2024-01-20 19:58:54 +08:00
parent d37ed5aea7
commit fcc574d19e
2 changed files with 2 additions and 1 deletions

View file

@ -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>

View file

@ -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;