Skip to content

Commit ffe7a7a

Browse files
committed
change receipt limit from 7 to 10
1 parent ea15cad commit ffe7a7a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ const schema = yup.object().shape({
129129
// in src/frontend/.env and set it to 'enabled'.
130130
(import.meta.env.MODE === 'development' && RECEIPTS_REQUIRED !== 'enabled'
131131
? yup.array()
132-
: yup.array().required('receipt files required').max(7, 'At most 7 Receipts are allowed')
132+
: yup.array().required('receipt files required').max(10, 'At most 10 Receipts are allowed')
133133
).of(yup.mixed<ReimbursementReceiptUploadArgs>().required())
134134
});
135135

0 commit comments

Comments
 (0)