We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b29f13 commit f80a884Copy full SHA for f80a884
src/app/components/StateRoute.tsx
@@ -123,7 +123,7 @@ const StateRoute = (props: StateRouteProps) => {
123
if (webMetrics.FID <= 100) FIDColor = '#0bce6b';
124
if (webMetrics.FID > 100 && webMetrics.FID <= 300) FIDColor = '#fc5a03';
125
if (webMetrics.FID > 300) FIDColor = '#fc2000';
126
- if (webMetrics.FCP <= 9000) FCPColor = '#0bce6b';
+ if (webMetrics.FCP <= 900) FCPColor = '#0bce6b';
127
if (webMetrics.FCP > 900 && webMetrics.FCP <= 1100) FCPColor = '#fc5a03';
128
if (webMetrics.FCP > 1100) FCPColor = '#fc2000';
129
if (webMetrics.TTFB <= 600) TTFBColor = '#0bce6b';
0 commit comments