Skip to content
This repository was archived by the owner on Oct 18, 2024. It is now read-only.

Commit 0f6c985

Browse files
authored
fix: change icon from the eye to eyeslash hidden checks (#277)
1 parent 4b07959 commit 0f6c985

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/app/repo/report/[id]/page.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import {
44
LanguageIcon,
55
StarIcon,
66
TicketIcon,
7-
EyeIcon,
7+
EyeSlashIcon,
88
} from "@heroicons/react/20/solid";
99
import { formatDistance } from "date-fns";
1010

@@ -57,7 +57,7 @@ export default async function Page({ params }) {
5757
),
5858
},
5959
{ icon: TicketIcon, text: check.githubResponse.repo.open_issues },
60-
{ icon: EyeIcon, text: check.repository.ignoreChecks?.length },
60+
{ icon: EyeSlashIcon, text: check.repository.ignoreChecks?.length },
6161
]}
6262
/>
6363
{check.repository.ignoreChecks?.length ? (

0 commit comments

Comments
 (0)