From 7ecb0a201ab180de92b5577c298accd7392164a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jozef=20Steinh=C3=BCbl?= Date: Sun, 12 May 2024 13:02:17 +0200 Subject: [PATCH] fix(github): closed_at typo --- src/commands/github.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/github.tsx b/src/commands/github.tsx index 9c7d14b..432baca 100644 --- a/src/commands/github.tsx +++ b/src/commands/github.tsx @@ -268,7 +268,7 @@ async function search( type: item.pull_request ? "🔨" : "🐛", }, created_at: new Date(item.created_at), - closed_at: item.closed_at ? new Date(item.cloased_at) : null, + closed_at: item.closed_at ? new Date(item.closed_at) : null, }; if (item.pull_request) {