We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8bf3cf8 commit f4dd08aCopy full SHA for f4dd08a
1 file changed
src/frontend/src/pages/FinancePage/ReimbursementRequestForm/ReimbursementProductTable.tsx
@@ -41,7 +41,7 @@ import ErrorPage from '../../ErrorPage';
41
import { formatReasonName } from '../../../utils/reimbursement-request.utils';
42
43
interface ReimbursementProductTableProps {
44
- reimbursementProducts: (ReimbursementProductFormArgs & { id: string })[];
+ reimbursementProducts: ReimbursementProductFormArgs[];
45
removeProduct: (index: number) => void;
46
appendProduct: (args: ReimbursementProductFormArgs) => void;
47
wbsElementAutocompleteOptions: {
@@ -85,7 +85,7 @@ const ReimbursementProductTable: React.FC<ReimbursementProductTableProps> = ({
85
name: string;
86
cost: number;
87
index: number;
88
- id: string;
+ id?: string;
89
}[]
90
>();
91
0 commit comments