diff --git a/src/app/api/portfolio/summary/[portfolioId]/route.ts b/src/app/api/portfolio/summary/[portfolioId]/route.ts index 4b40e510..fae683e2 100644 --- a/src/app/api/portfolio/summary/[portfolioId]/route.ts +++ b/src/app/api/portfolio/summary/[portfolioId]/route.ts @@ -129,7 +129,7 @@ export async function GET( }, { title: - "Potential valuation improvement/unit - highlight indicative EPC effect*", + "Potential valuation improvement/unit - highly indicative EPC effect*", scenarios: [ { scenarioName: portfolioName, @@ -139,7 +139,7 @@ export async function GET( }, { title: - "Potential valuation return on investment - highlight indicative EPC effect*", + "Potential valuation return on investment - highly indicative EPC effect*", scenarios: [ { scenarioName: portfolioName, diff --git a/src/app/components/portfolio/summary/SummaryTable.tsx b/src/app/components/portfolio/summary/SummaryTable.tsx index 1d7fdd71..8272200e 100644 --- a/src/app/components/portfolio/summary/SummaryTable.tsx +++ b/src/app/components/portfolio/summary/SummaryTable.tsx @@ -57,8 +57,8 @@ export const useFetchPortfolioSummary = ({ const shouldHighlightRow = (title: string) => { return [ - "Potential valuation improvement/unit - highlight indicative EPC effect*", - "Potential valuation return on investment - highlight indicative EPC effect*", + "Potential valuation improvement/unit - highly indicative EPC effect*", + "Potential valuation return on investment - highly indicative EPC effect*", ].includes(title); }; @@ -204,7 +204,7 @@ const SummaryTable = ({ key={row.id} style={ shouldHighlightRow(row.original.title) - ? { background: "#fbf8f8" } + ? { background: "#e1e1e1" } : {} } > diff --git a/src/app/portfolio/[slug]/utils.ts b/src/app/portfolio/[slug]/utils.ts index 4c0750f6..6e5fee6b 100644 --- a/src/app/portfolio/[slug]/utils.ts +++ b/src/app/portfolio/[slug]/utils.ts @@ -196,7 +196,7 @@ export async function getOverviewPortfolioData( }, { title: - "Potential valuation improvement/unit - highlight indicative EPC effect*", + "Potential valuation improvement/unit - highly indicative EPC effect*", scenarios: [ { scenarioName: "Today", data: "" }, { @@ -207,7 +207,7 @@ export async function getOverviewPortfolioData( }, { title: - "Potential valuation return on investment - highlight indicative EPC effect*", + "Potential valuation return on investment - highly indicative EPC effect*", scenarios: [ { scenarioName: "Today", data: "" }, {