Skip to content

Commit 779c86f

Browse files
committed
prettier
1 parent c19bb09 commit 779c86f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/frontend/src/pages/FinancePage/ReimbursementRequestForm/ReimbursementFormView.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,9 @@ const ReimbursementRequestFormView: React.FC<ReimbursementRequestFormViewProps>
123123

124124
// to grab all the proper refund sources, deduplicated by indexCodeId
125125
const refundSources: CreateRefundSourceArgs[] = (() => {
126-
const allSources = reimbursementProducts.flatMap((product) => product.refundSources).filter((source) => source.amount > 0);
126+
const allSources = reimbursementProducts
127+
.flatMap((product) => product.refundSources)
128+
.filter((source) => source.amount > 0);
127129
const seen = new Set<string>();
128130
return allSources.filter((source) => {
129131
const id = source.indexCode.indexCodeId;

0 commit comments

Comments
 (0)