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

Commit

Permalink
fix: change icon from the eye to eyeslash hidden checks (#277)
Browse files Browse the repository at this point in the history
  • Loading branch information
ScriptShah authored Oct 17, 2024
1 parent 4b07959 commit 0f6c985
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/repo/report/[id]/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
LanguageIcon,
StarIcon,
TicketIcon,
EyeIcon,
EyeSlashIcon,
} from "@heroicons/react/20/solid";
import { formatDistance } from "date-fns";

Expand Down Expand Up @@ -57,7 +57,7 @@ export default async function Page({ params }) {
),
},
{ icon: TicketIcon, text: check.githubResponse.repo.open_issues },
{ icon: EyeIcon, text: check.repository.ignoreChecks?.length },
{ icon: EyeSlashIcon, text: check.repository.ignoreChecks?.length },
]}
/>
{check.repository.ignoreChecks?.length ? (
Expand Down

0 comments on commit 0f6c985

Please sign in to comment.