diff --git a/src/Components/Case/CaseDetailsPage.js b/src/Components/Case/CaseDetailsPage.js index 2919093..5791e3e 100644 --- a/src/Components/Case/CaseDetailsPage.js +++ b/src/Components/Case/CaseDetailsPage.js @@ -122,9 +122,6 @@ const CaseDetailsPage = () => { radioValue, clientPosition ) { - console.log( - "hit generateOutgoingDiscoveryRequests-----------------------------" - ); const response = await fetch( `${apiUrl}/v1/make-outgoing-requests/${docId}/${radioValue}/${clientPosition}`, { diff --git a/src/Components/Document/ReqEditPage.js b/src/Components/Document/ReqEditPage.js index d981bbb..8c9a63b 100644 --- a/src/Components/Document/ReqEditPage.js +++ b/src/Components/Document/ReqEditPage.js @@ -74,14 +74,17 @@ const RequestEditPage = () => { } getOutgoingRequests(documentId) .then((data) => { - const resp = [...foundationRogs, ...data[0].requests].map( - (item, index) => { - // NEVER CHANGE THIS: - return { showInputEle: false, text: item.text, index: index }; - } - ); - const calld = [...resp]; - setRequests(calld); + const merged = [...foundationRogs, ...data[0].requests]; + console.log("merged", merged); + const resp = merged?.map((item, index) => { + // NEVER CHANGE THIS: + return { showInputEle: false, text: item.text, index: index }; + }); + if (!resp.length > 10) { + return; + } + console.log("resp", resp); + setRequests(resp); setProdReq(standardProd); }) .catch((err) => console.log(err)); diff --git a/src/styles/homepage.scss b/src/styles/homepage.scss index 19424a2..c12cadd 100644 --- a/src/styles/homepage.scss +++ b/src/styles/homepage.scss @@ -137,7 +137,7 @@ section.section-1 { h1.heading-1 { color: #fff; font-family: Roboto; - font-size: 54px; + font-size: 56px; font-style: normal; font-weight: 500; line-height: 52px; /* 140.625% */ @@ -147,19 +147,20 @@ h1.heading-1 { h1.heading-2 { color: #fff; font-family: Roboto; - font-size: 32px; + font-size: 33px; font-style: normal; font-weight: 400; line-height: 52px; /* 140.625% */ margin-bottom: 0px !important; + margin-top: 8px; } p.text-block-1 { color: #fff; font-family: Roboto; - font-size: 26px; + font-size: 25px; font-style: normal; - font-weight: 400; + font-weight: 300; line-height: 29.756px; /* 123.983% */ width: 525px; margin-top: 28px;