diff --git a/src/App.jsx b/src/App.jsx index 937b61c..f8e6799 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -31,7 +31,7 @@ function TetrisPiece({ piece, isDark }) { } }; - 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;