We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea15cad commit ffe7a7aCopy full SHA for ffe7a7a
1 file changed
src/frontend/src/pages/FinancePage/ReimbursementRequestForm/ReimbursementRequestForm.tsx
@@ -129,7 +129,7 @@ const schema = yup.object().shape({
129
// in src/frontend/.env and set it to 'enabled'.
130
(import.meta.env.MODE === 'development' && RECEIPTS_REQUIRED !== 'enabled'
131
? yup.array()
132
- : yup.array().required('receipt files required').max(7, 'At most 7 Receipts are allowed')
+ : yup.array().required('receipt files required').max(10, 'At most 10 Receipts are allowed')
133
).of(yup.mixed<ReimbursementReceiptUploadArgs>().required())
134
});
135
0 commit comments