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

Commit

Permalink
fix: correctly implemments the right icon for modular contracts
Browse files Browse the repository at this point in the history
  • Loading branch information
GWSzeto committed Jul 27, 2024
1 parent cf19d8b commit e913f9f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/app/contracts/sidebar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { SideBar } from "@/components/Layouts/DocLayout";
import {
ContractModularContractIcon,
ContractExploreIcon,
ContractInteractIcon,
ContractDeployIcon,
ContractPublishIcon,
} from "@/icons";
Expand All @@ -11,7 +10,6 @@ const prebuiltSlug = "/contracts/explore/pre-built-contracts";
const modularContractsSlug = "/contracts/modular-contracts";
const deploySlug = "/contracts/deploy";
const publishSlug = "/contracts/publish";
const interactSlug = "/contracts/interact";
const designDocs = "/contracts/design-docs";
const extensionsContractsSlug = "/contracts/modular-contracts/extension-contracts";
const coreContractsSlug = "/contracts/modular-contracts/core-contracts";
Expand Down
4 changes: 2 additions & 2 deletions src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ import {
UnityIcon,
DotNetIcon,
SolidityIcon,
ContractBuildIcon,
ContractModularContractIcon,
ContractExploreIcon,
ContractInteractIcon,
ContractDeployIcon,
Expand Down Expand Up @@ -289,7 +289,7 @@ function ContractsSection() {
title="Build"
description="Write your own smart contracts"
href="/contracts/build/overview"
icon={ContractBuildIcon}
icon={ContractModularContractIcon}
/>
<ArticleCardIndex
title="Interact"
Expand Down

0 comments on commit e913f9f

Please sign in to comment.