From aaf419deb099b4b17578a5fd37251566f5884c8d Mon Sep 17 00:00:00 2001
From: Liliana Sanfilippo <lsanfilippo@techfak.uni-bielefeld.de>
Date: Sat, 23 Nov 2024 12:06:43 +0100
Subject: [PATCH] got rid of cardtext (unused)

---
 src/components/HorizontalTimeline.tsx | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/src/components/HorizontalTimeline.tsx b/src/components/HorizontalTimeline.tsx
index ec132b1e..36b2f2d1 100644
--- a/src/components/HorizontalTimeline.tsx
+++ b/src/components/HorizontalTimeline.tsx
@@ -133,7 +133,6 @@ function TimeItem({tag, title, pic, author, tabid, month}: ItemProps){
                   author={name}
                   tabid={timelinedata[i].interviewtabid} 
                   month={timelinedata[i].months}  >
-                    {timelinedata[i].cardtext}
                 </TimeItem>)
             }
         }
@@ -171,7 +170,7 @@ function TimeItem({tag, title, pic, author, tabid, month}: ItemProps){
       
       interface ItemProps {
         title: string ,
-        children: React.ReactNode;
+        children?: React.ReactNode;
         tag: string, 
         pic: string,
         author: string, 
@@ -200,7 +199,6 @@ function TimeItem({tag, title, pic, author, tabid, month}: ItemProps){
               author={name}
               tabid={timelinedata[i].interviewtabid}
               month={timelinedata[i].months}              >
-                {timelinedata[i].cardtext}
               </TimeItemMeta>)
           }
           else{
@@ -218,7 +216,6 @@ function TimeItem({tag, title, pic, author, tabid, month}: ItemProps){
               author={name}
               tabid={timelinedata[i].interviewtabid} 
               month={timelinedata[i].months}             >
-                {timelinedata[i].cardtext}
               </TimeItem>)
           }
           
@@ -246,7 +243,6 @@ function TimeItem({tag, title, pic, author, tabid, month}: ItemProps){
                   author={name}
                   tabid={timelinedata[i].interviewtabid} 
                   month={timelinedata[i].months}  >
-                    {timelinedata[i].cardtext}
                 </TimeItem>)
             }
         }
-- 
GitLab