Changeset 057453c for src/sections/invoice/invoice-table-row.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-table-row.tsx
r5d6f37a r057453c 16 16 import { fNumber } from 'src/utils/format-number'; 17 17 // types 18 import { Invoice } from ' mvpmasters-shared';18 import { Invoice } from 'src/schemas'; 19 19 // components 20 20 import Label from 'src/components/label'; … … 60 60 } = row; 61 61 62 console.log(createDate); 63 62 64 const confirmSend = useBoolean(); 63 65 const confirmDelete = useBoolean(); … … 105 107 <TableCell> 106 108 <ListItemText 107 primary={format( createDate.toDate(), 'dd MMM yyyy')}108 secondary={format( createDate.toDate(), 'p')}109 primary={format(new Date(createDate), 'dd MMM yyyy')} 110 secondary={format(new Date(createDate), 'p')} 109 111 primaryTypographyProps={{ typography: 'body2', noWrap: true }} 110 112 secondaryTypographyProps={{ … … 118 120 <TableCell> 119 121 <ListItemText 120 primary={format( dueDate.toDate(), 'dd MMM yyyy')}121 secondary={format( dueDate.toDate(), 'p')}122 primary={format(new Date(dueDate), 'dd MMM yyyy')} 123 secondary={format(new Date(dueDate), 'p')} 122 124 primaryTypographyProps={{ typography: 'body2', noWrap: true }} 123 125 secondaryTypographyProps={{
Note:
See TracChangeset
for help on using the changeset viewer.