diff --git a/src/components/CreateInvoice/CreateInvoice.tsx b/src/components/CreateInvoice/CreateInvoice.tsx
index a616f2f..aa400e5 100644
--- a/src/components/CreateInvoice/CreateInvoice.tsx
+++ b/src/components/CreateInvoice/CreateInvoice.tsx
@@ -121,7 +121,8 @@ const CreateInvoice: React.FC = ({
method: 'POST',
headers: {
'Content-Type': 'application/json',
- Authorization: `Bearer ${accessToken}`
+ Authorization: `Bearer ${accessToken}`,
+ Accept: "application/json"
},
body: JSON.stringify(tempData),
diff --git a/src/components/CreateInvoice/ProjectTotalFee.tsx b/src/components/CreateInvoice/ProjectTotalFee.tsx
index 253332a..c4ac75a 100644
--- a/src/components/CreateInvoice/ProjectTotalFee.tsx
+++ b/src/components/CreateInvoice/ProjectTotalFee.tsx
@@ -37,7 +37,7 @@ const ProjectTotalFee: React.FC= ({}) => {
{t("Project Total Fee")}
- {moneyFormatter.format(projectTotal += amount)}
+ {moneyFormatter.format(amount ? projectTotal += amount : projectTotal)}
);