From 99c9454b9dc6d4fd60f71e2cbc5ecf652d61d25f Mon Sep 17 00:00:00 2001 From: Tiago Fonseca Date: Fri, 3 Jan 2025 17:44:45 -0300 Subject: [PATCH] bypass error --- frontend/web/components/GithubStar.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frontend/web/components/GithubStar.tsx b/frontend/web/components/GithubStar.tsx index f1b12fa5cd06..f59fe104d010 100644 --- a/frontend/web/components/GithubStar.tsx +++ b/frontend/web/components/GithubStar.tsx @@ -21,9 +21,7 @@ const GithubStar: FC = ({}) => { .then(function (res) { setStars(res.stargazers_count) }) - .catch(() => { - setStars(undefined) - }) + .catch(() => {}) } }, [planName])