From 0cdbf464f790ff2025c8c51c78b531847bb96bb6 Mon Sep 17 00:00:00 2001 From: Stuart Long Chay Boon Date: Thu, 3 Nov 2022 00:53:52 +0800 Subject: [PATCH] [offer][fix] remove optional valuation for bbs --- apps/portal/src/types/offers.d.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/portal/src/types/offers.d.ts b/apps/portal/src/types/offers.d.ts index cd459016..7997452a 100644 --- a/apps/portal/src/types/offers.d.ts +++ b/apps/portal/src/types/offers.d.ts @@ -65,14 +65,14 @@ export type SpecificYoe = { }; export type DashboardOffer = { - baseSalary?: Valuation?; - bonus?: Valuation?; + baseSalary?: Valuation; + bonus?: Valuation; company: OffersCompany; id: string; income: Valuation; monthYearReceived: Date; profileId: string; - stocks?: Valuation?; + stocks?: Valuation; title: string; totalYoe: number; };