From 72c8dcdc0afee94da428a88a4983e562d7866464 Mon Sep 17 00:00:00 2001 From: Cagdas U Date: Fri, 13 Aug 2021 18:43:21 +0300 Subject: [PATCH] fix(roles): set initial rates to 1000 Addresses https://github.com/topcoder-platform/taas-app/issues/439#issuecomment-898503729 --- .../Roles/components/RoleForm/index.jsx | 24 +++++++++---------- 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/src/routes/Roles/components/RoleForm/index.jsx b/src/routes/Roles/components/RoleForm/index.jsx index b4375b1..b49ed55 100644 --- a/src/routes/Roles/components/RoleForm/index.jsx +++ b/src/routes/Roles/components/RoleForm/index.jsx @@ -72,18 +72,18 @@ function RoleForm() { rates: [ ...roleState.rates, { - global: 10, - inCountry: 10, - offShore: 10, - niche: 10, - rate30Niche: 10, - rate30Global: 10, - rate30InCountry: 10, - rate30OffShore: 10, - rate20Niche: 10, - rate20Global: 10, - rate20InCountry: 10, - rate20OffShore: 10, + global: 1000, + inCountry: 1000, + offShore: 1000, + niche: 1000, + rate30Niche: 1000, + rate30Global: 1000, + rate30InCountry: 1000, + rate30OffShore: 1000, + rate20Niche: 1000, + rate20Global: 1000, + rate20InCountry: 1000, + rate20OffShore: 1000, }, ], })