ameerazam08 commited on
Commit
6293bd3
1 Parent(s): 5b91d3f

Update src/components/about-card.tsx

Browse files
Files changed (1) hide show
  1. src/components/about-card.tsx +1 -1
src/components/about-card.tsx CHANGED
@@ -73,7 +73,7 @@ export function AboutCard({ title, description, subTitle,imageName,paper_links }
73
  );
74
  }
75
 
76
- function isVideo(filename) {
77
  return ['.mp4', '.webm', '.ogg'].some(extension => filename.endsWith(extension));
78
  }
79
 
 
73
  );
74
  }
75
 
76
+ function isVideo(filename: string) {
77
  return ['.mp4', '.webm', '.ogg'].some(extension => filename.endsWith(extension));
78
  }
79