|
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'; |
@@ -40,7 +40,7 @@ import { |
40 | 40 | } from '../../../hooks/finance.hooks'; |
41 | 41 | import { useToast } from '../../../hooks/toasts.hooks'; |
42 | 42 | import { useCurrentUser } from '../../../hooks/users.hooks'; |
43 | | -import { centsToDollar, fullNamePipe, undefinedPipe } from '../../../utils/pipes'; |
| 43 | +import { centsToDollar, fullNamePipe } from '../../../utils/pipes'; |
44 | 44 | import { |
45 | 45 | imageDownloadUrl, |
46 | 46 | imageFileUrl, |
@@ -479,7 +479,7 @@ const ReimbursementRequestDetailsView: React.FC<ReimbursementRequestDetailsViewP |
479 | 479 | }, |
480 | 480 | { content: `$${centsToDollar(reimbursementRequest.totalCost)}` }, |
481 | 481 | { content: reimbursementRequest.vendor.name }, |
482 | | - { content: `${undefinedPipe(reimbursementRequest.saboId)}` }, |
| 482 | + { content: `${formatSaboIdPipe(reimbursementRequest.saboId)}` }, |
483 | 483 | { |
484 | 484 | content: refundSourceNames.join(', ') |
485 | 485 | }, |
|
0 commit comments