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])