From 2dffb3ec958de97dd323915c8b639caa8124b48a Mon Sep 17 00:00:00 2001 From: Thibault Le Ouay Date: Mon, 29 Apr 2024 13:16:54 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=93=9D=20typo=20value=20(#791)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- packages/rum/src/config.ts | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/packages/rum/src/config.ts b/packages/rum/src/config.ts index 08963a08..867b2e47 100644 --- a/packages/rum/src/config.ts +++ b/packages/rum/src/config.ts @@ -46,18 +46,18 @@ export const webVitalsConfig: WebVitalsConfig = { type: "good", label: "Good", min: 0, - max: 1000, + max: 1800, }, { type: "needs-improvement", label: "Needs Improvement", - min: 1000, - max: 2500, + min: 1800, + max: 3000, }, { type: "poor", label: "Poor", - min: 2500, + min: 3000, max: Infinity, }, ], @@ -98,18 +98,18 @@ export const webVitalsConfig: WebVitalsConfig = { type: "good", label: "Good", min: 0, - max: 50, + max: 200, }, { type: "needs-improvement", label: "Needs Improvement", - min: 50, - max: 250, + min: 200, + max: 500, }, { type: "poor", label: "Poor", - min: 250, + min: 500, max: Infinity, }, ], @@ -150,18 +150,18 @@ export const webVitalsConfig: WebVitalsConfig = { type: "good", label: "Good", min: 0, - max: 200, + max: 800, }, { type: "needs-improvement", label: "Needs Improvement", - min: 200, - max: 500, + min: 800, + max: 1800, }, { type: "poor", label: "Poor", - min: 500, + min: 1800, max: Infinity, }, ], -- 2.51.2