Chore: Silence WebVitalsScore missing prop warning in build logs
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 10s
Build & Deploy / 🏗️ Build (push) Successful in 7m7s
Build & Deploy / 🚀 Deploy (push) Successful in 23s
Build & Deploy / 🩺 Smoke Test (push) Failing after 3s
Build & Deploy / 🔔 Notify (push) Successful in 4s

This commit is contained in:
2026-05-05 18:55:22 +02:00
parent c08950e865
commit 4ac5b15473

View File

@@ -17,7 +17,6 @@ interface WebVitalsScoreProps {
export const WebVitalsScore: React.FC<WebVitalsScoreProps> = ({ values, description }) => {
if (!values) {
console.error("WebVitalsScore: 'values' prop is missing!");
return null;
}