|
3 | 3 | * See the LICENSE file in the repository root folder for details. |
4 | 4 | */ |
5 | 5 |
|
6 | | -import { accountCodePipe, displayEnum } from '../../../utils/pipes'; |
| 6 | +import { accountCodePipe, displayEnum, formatSaboIdPipe } from '../../../utils/pipes'; |
7 | 7 | import { Assignment, ChangeCircle, Edit, Pending } from '@mui/icons-material'; |
8 | 8 | import CheckIcon from '@mui/icons-material/Check'; |
9 | 9 | import CloseIcon from '@mui/icons-material/Close'; |
@@ -39,7 +39,7 @@ import { |
39 | 39 | } from '../../../hooks/finance.hooks'; |
40 | 40 | import { useToast } from '../../../hooks/toasts.hooks'; |
41 | 41 | import { useCurrentUser } from '../../../hooks/users.hooks'; |
42 | | -import { centsToDollar, fullNamePipe, undefinedPipe } from '../../../utils/pipes'; |
| 42 | +import { centsToDollar, fullNamePipe } from '../../../utils/pipes'; |
43 | 43 | import { |
44 | 44 | imageDownloadUrl, |
45 | 45 | imageFileUrl, |
@@ -469,7 +469,7 @@ const ReimbursementRequestDetailsView: React.FC<ReimbursementRequestDetailsViewP |
469 | 469 | }, |
470 | 470 | { content: `$${centsToDollar(reimbursementRequest.totalCost)}` }, |
471 | 471 | { content: reimbursementRequest.vendor.name }, |
472 | | - { content: `${undefinedPipe(reimbursementRequest.saboId)}` }, |
| 472 | + { content: `${formatSaboIdPipe(reimbursementRequest.saboId)}` }, |
473 | 473 | { |
474 | 474 | content: refundSourceNames.join(', ') |
475 | 475 | }, |
|
0 commit comments