diff --git a/src/App.jsx b/src/App.jsx index e8fbd97..96dba1e 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -24,9 +24,7 @@ function TetrisPiece({ piece, isDark }) { setShowText(false); }; - const bgColor = piece.label === 'cv' - ? piece.color - : (isDark ? piece.colorDark : piece.color); + const bgColor = piece.label === 'cv' ? piece.color : piece.color; const rowDelay = piece.startY * 4; const textColor = '#ffffff'; const isStatic = piece.label === 'cv' || piece.featured;