From 3970e23236fa51c572754493b4181ca6e303528f Mon Sep 17 00:00:00 2001 From: Adam Setch Date: Mon, 3 Jun 2024 20:02:03 -0400 Subject: [PATCH] refactor: user's name can be null --- src/types.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/types.ts b/src/types.ts index fcdcbed32..a3e62104f 100644 --- a/src/types.ts +++ b/src/types.ts @@ -80,7 +80,7 @@ export interface AccountNotifications { export interface GitifyUser { login: string; - name: string; + name: string | null; id: number; }