diff --git a/src/pages/campaigns/quote/sections/HumanResources/FormProvider.tsx b/src/pages/campaigns/quote/sections/HumanResources/FormProvider.tsx
index 91df6009..856c8775 100644
--- a/src/pages/campaigns/quote/sections/HumanResources/FormProvider.tsx
+++ b/src/pages/campaigns/quote/sections/HumanResources/FormProvider.tsx
@@ -9,6 +9,7 @@ import siteWideMessageStore from "src/redux/siteWideMessages";
export type FormProps = {
items: Array<{
+ notSaved?: boolean;
assignee: number;
days: number;
role: number;
diff --git a/src/pages/campaigns/quote/sections/HumanResources/index.tsx b/src/pages/campaigns/quote/sections/HumanResources/index.tsx
index 3365b986..ab4147e0 100644
--- a/src/pages/campaigns/quote/sections/HumanResources/index.tsx
+++ b/src/pages/campaigns/quote/sections/HumanResources/index.tsx
@@ -42,6 +42,7 @@ const StyledRow = styled.div`
`;
type RateOption = {
+ notSaved?: boolean;
value: string;
label: string;
dailyRate: number;
@@ -275,7 +276,11 @@ const FormContent = ({ campaignId }: { campaignId: string }) => {
@@ -322,7 +327,12 @@ const FormContent = ({ campaignId }: { campaignId: string }) => {