We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c19bb09 commit 779c86fCopy full SHA for 779c86f
1 file changed
src/frontend/src/pages/FinancePage/ReimbursementRequestForm/ReimbursementFormView.tsx
@@ -123,7 +123,9 @@ const ReimbursementRequestFormView: React.FC<ReimbursementRequestFormViewProps>
123
124
// to grab all the proper refund sources, deduplicated by indexCodeId
125
const refundSources: CreateRefundSourceArgs[] = (() => {
126
- const allSources = reimbursementProducts.flatMap((product) => product.refundSources).filter((source) => source.amount > 0);
+ const allSources = reimbursementProducts
127
+ .flatMap((product) => product.refundSources)
128
+ .filter((source) => source.amount > 0);
129
const seen = new Set<string>();
130
return allSources.filter((source) => {
131
const id = source.indexCode.indexCodeId;
0 commit comments