diff --git a/app/components/About.tsx b/app/components/About.tsx index bd86353..e608fbe 100644 --- a/app/components/About.tsx +++ b/app/components/About.tsx @@ -118,8 +118,8 @@ const About = () => { description="Tools & Technologies" header={
- {techStack.length > 0 ? ( - techStack.flatMap(cat => cat.items.map((item: any) => ( + {techStack && techStack.length > 0 ? ( + techStack.flatMap(cat => cat.items?.map((item: any) => ( { description="Beyond the screen" header={
- {hobbies.length > 0 ? hobbies.map((hobby, i) => { + {hobbies && hobbies.length > 0 ? hobbies.map((hobby, i) => { const Icon = iconMap[hobby.icon] || Lightbulb; return (