From 30063198736b0cda8c371870dbeadab17bb329d5 Mon Sep 17 00:00:00 2001 From: Craig Wayne Date: Mon, 10 Nov 2025 11:21:25 +0000 Subject: [PATCH 1/2] Fix incorrect class attribute usage --- src/components/Projects.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/Projects.tsx b/src/components/Projects.tsx index 6cd579d..61b5720 100644 --- a/src/components/Projects.tsx +++ b/src/components/Projects.tsx @@ -112,7 +112,7 @@ export function Projects({data}: ProjectsProps) { project.liveUrl ? @@ -169,7 +181,7 @@ export default function App() { href={portfolioData.personal.cvPath} download={portfolioData.personal.cvFileName} className="flex items-center gap-1" - onClick={() => setIsMenuOpen(false)} + onClick={() => trackDownloadCV()} > Download CV @@ -264,4 +276,4 @@ export default function App() { ); -} \ No newline at end of file +} diff --git a/src/components/About.tsx b/src/components/About.tsx index 73820ad..3c90403 100644 --- a/src/components/About.tsx +++ b/src/components/About.tsx @@ -19,7 +19,6 @@ interface AboutProps { skill: string; level: string; }>; - image: string; }; } @@ -336,4 +335,4 @@ export function About({data}: AboutProps) { ); -} \ No newline at end of file +}