Skip to content

Commit

Permalink
Fix ts error
Browse files Browse the repository at this point in the history
  • Loading branch information
Tamir198 committed Mar 31, 2024
1 parent 37d3b28 commit 6f8bb14
Showing 1 changed file with 12 additions and 5 deletions.
17 changes: 12 additions & 5 deletions types/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import { MemberCardSocialButtons } from '@/components/Members/MemberCard/MemberCardSocialButtons';

export interface ProjectFilter {
name: string;
isActive: boolean;
Expand Down Expand Up @@ -67,9 +65,18 @@ export interface Member {
longDescription: string;
joinDate: string;
isAdmin: boolean;
linkedInUrl: string; // Add linkedInUrl property
githubUrl: string; // Add githubUrl property
twitterUrl: string; // Add twitterUrl property
linkedInUrl: string;
githubUrl: string;
twitterUrl: string;
}

export interface MemberCardProps {
imgUrl: string;
name: string;
shortDescription: string;
longDescription: string;
joinDate: string;
isAdmin: boolean;
}

export interface MemberCardInfoProps extends Omit<Member, 'id'> {}
Expand Down

0 comments on commit 6f8bb14

Please sign in to comment.