From aff14bdf2f87793cb16e2d8f1d787dc2368edb73 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Wed, 18 Feb 2026 20:27:43 +0000 Subject: [PATCH] Remove duplicate SocialShare from Foundations theme page Components now render SocialShare internally via showSocialShare prop, so the page-level SocialShare block was causing duplicates. Co-Authored-By: Neeldhara Misra --- src/pages/theme-pages/discrete-math/Foundations.tsx | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/src/pages/theme-pages/discrete-math/Foundations.tsx b/src/pages/theme-pages/discrete-math/Foundations.tsx index c4eba6c..c8eec1b 100644 --- a/src/pages/theme-pages/discrete-math/Foundations.tsx +++ b/src/pages/theme-pages/discrete-math/Foundations.tsx @@ -3,7 +3,6 @@ import { Link } from "react-router-dom"; import { Search } from "lucide-react"; import Layout from "@/components/Layout"; import InteractiveCard from "@/components/InteractiveCard"; -import SocialShare from "@/components/SocialShare"; import BinaryNumberGame from "@/components/BinaryNumberGame"; import TernaryNumberGame from "@/components/TernaryNumberGame"; import BalancedTernaryGame from "@/components/BalancedTernaryGame"; @@ -80,12 +79,6 @@ const Foundations = () => { - - ; } @@ -117,4 +110,4 @@ const Foundations = () => { ; }; -export default Foundations; \ No newline at end of file +export default Foundations;