From d180d4eab36b8747519659a0337197c5fad7094c Mon Sep 17 00:00:00 2001 From: utarwyn Date: Sat, 6 Jan 2024 16:13:41 +0100 Subject: [PATCH] Fix types --- src/global.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/global.d.ts b/src/global.d.ts index 52441de..916a603 100644 --- a/src/global.d.ts +++ b/src/global.d.ts @@ -2,7 +2,7 @@ declare type MemberLinkType = 'linkedin' | 'github'; declare type Member = { name: string - company: string + company?: string profile: string links: Partial> }