Skip to content

Commit b01bb64

Browse files
committed
Add social media field to Contributor type in useGames hook
1 parent 56af19b commit b01bb64

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

client/src/hooks/useGames.ts

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ type Contributor = {
77
member_id: number;
88
name: string;
99
role: string;
10+
social_media?: Array<{
11+
socialMediaName: string;
12+
link: string;
13+
socialMediaUserName: string;
14+
}>;
1015
};
1116

1217
type ApiGame = {

0 commit comments

Comments
 (0)