Skip to content

Commit

Permalink
fix explorer navabar typo/lint
Browse files Browse the repository at this point in the history
  • Loading branch information
codenamejason committed May 1, 2024
1 parent 62bace8 commit b1db641
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/common/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -430,7 +430,7 @@ const passportLiteRounds = [
{ roundId: "23", chainId: 42161 }, // Hackathon Alumni
{ roundId: "24", chainId: 42161 }, // ENS
{ roundId: "25", chainId: 42161 }, // dApps & Apps
{ roundId: "26", chainId: 42161 }, // WEB3 Infrastructurre
{ roundId: "26", chainId: 42161 }, // WEB3 Infrastructure
{ roundId: "27", chainId: 42161 }, // Developer Tooling
{ roundId: "28", chainId: 42161 }, // Hypercerts Ecosystem
{ roundId: "29", chainId: 42161 }, // Climate Solutions
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
import { CommunityCollection } from "./community";
import { Link } from "react-router-dom";
import { Badge, BasicCard, CardHeader } from "../common/styles";
import { CollectionBanner } from "../discovery/CardBanner";
import { collectionPath } from "common/src/routes/explorer";
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
import useSWR, { SWRResponse } from "swr";
import { Collection } from "data-layer";
import { useDataLayer } from "data-layer";
import { CommunityCollection } from "../community";
import { CollectionV1, parseCollection } from "../collections";
import { getConfig } from "common/src/config";
Expand Down
2 changes: 1 addition & 1 deletion packages/grant-explorer/src/features/common/Navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ export default function Navbar(props: NavbarProps) {
{
chainId: 42161,
roundId: "26",
name: "WEB3 Infrastructurre",
name: "WEB3 Infrastructure",
link: "/round/42161/26",
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -667,7 +667,7 @@ async function isVerified(args: {
project: Project | undefined;
dataLayer: DataLayer;
}) {
const { verifiableCredential, provider, project, dataLayer } = args;
const { verifiableCredential, provider, project } = args;

const passportVerifier = new PassportVerifierWithExpiration();
const vcHasValidProof = await passportVerifier.verifyCredential(verifiableCredential);
Expand Down

0 comments on commit b1db641

Please sign in to comment.