Changeset 057453c for src/sections/invoice/invoice-mk-pdf.tsx
- Timestamp:
- 02/26/25 10:05:32 (5 weeks ago)
- Branches:
- main
- Children:
- 299af01
- Parents:
- 5d6f37a
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/sections/invoice/invoice-mk-pdf.tsx
r5d6f37a r057453c 5 5 import { fCurrency } from 'src/utils/format-number'; 6 6 // types 7 import { Invoice } from ' mvpmasters-shared';7 import { Invoice } from 'src/schemas'; 8 8 import { createFullAddress } from 'src/utils/create-full-address'; 9 9 import { getQuantityType } from 'src/utils/get-invoice-quantity-type'; … … 179 179 <View style={styles.col6}> 180 180 <Text style={[styles.subtitle1, styles.mb4]}>Date Issued</Text> 181 <Text style={styles.body2}>{fDate(createDate .toDate())}</Text>181 <Text style={styles.body2}>{fDate(createDate)}</Text> 182 182 </View> 183 183 <View style={styles.col6}> 184 184 <Text style={[styles.subtitle1, styles.mb4]}>Due date</Text> 185 <Text style={styles.body2}>{fDate(dueDate .toDate())}</Text>185 <Text style={styles.body2}>{fDate(dueDate)}</Text> 186 186 </View> 187 187 </View>
Note:
See TracChangeset
for help on using the changeset viewer.