We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20cbfbc commit 7bc05caCopy full SHA for 7bc05ca
1 file changed
src/frontend/src/pages/FinancePage/ReimbursementRequestForm/ReimbursementFormView.tsx
@@ -120,8 +120,6 @@ const ReimbursementRequestFormView: React.FC<ReimbursementRequestFormViewProps>
120
return { label: expenseTypePipe(expenseType), id: expenseType.expenseTypeId };
121
};
122
123
- const formHeight: number = 375;
124
-
125
return (
126
<form
127
onSubmit={(e) => {
@@ -142,7 +140,7 @@ const ReimbursementRequestFormView: React.FC<ReimbursementRequestFormViewProps>
142
140
</Snackbar>
143
141
)}
144
<Grid container spacing={2}>
145
- <Grid item container maxHeight={formHeight} spacing={2} md={6} xs={12}>
+ <Grid item container maxHeight={375} spacing={2} md={6} xs={12}>
146
<Grid item xs={12}>
147
<FormControl fullWidth>
148
<FormLabel>Purchased From</FormLabel>
0 commit comments