From ea8c40a90aa67ee8718dbc20a1129e13c6a2bd19 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sun, 25 Jan 2026 11:07:29 +0000 Subject: [PATCH] Fix syntax error in EnhancedGeometry.js - add missing closing parenthesis for React.memo() Co-authored-by: alexpolo1 <14327609+alexpolo1@users.noreply.github.com> --- frontend/src/components/EnhancedGeometry.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/EnhancedGeometry.js b/frontend/src/components/EnhancedGeometry.js index 361bc6c..2cc9cca 100644 --- a/frontend/src/components/EnhancedGeometry.js +++ b/frontend/src/components/EnhancedGeometry.js @@ -86,7 +86,7 @@ const Hint = React.memo(({ text, multiline = false }) => ( }}> -); +)); // CSS for hover effect const style = document.createElement('style');