Skip to content

Commit 363cdce

Browse files
authored
Remove contract icon (#1724)
1 parent e6736bf commit 363cdce

File tree

4 files changed

+3
-5
lines changed

4 files changed

+3
-5
lines changed

src/app/(sidebar)/smart-contracts/contract-explorer/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,6 @@ export default function ContractExplorer() {
272272
fieldSize="md"
273273
id="contract-id"
274274
label="Contract ID"
275-
leftElement={<Icon.FileCode02 />}
276275
placeholder="Ex: CCBWOUL7XW5XSWD3UKL76VWLLFCSZP4D4GUSCFBHUQCEAW23QVKJZ7ON"
277276
error={contractIdInputError}
278277
value={contractIdInput}

src/app/(sidebar)/smart-contracts/contract-list/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"use client";
22

33
import { useState } from "react";
4-
import { Icon, Link, Loader, Text } from "@stellar/design-system";
4+
import { Link, Loader, Text } from "@stellar/design-system";
55
import { useRouter } from "next/navigation";
66

77
import { Box } from "@/components/layout/Box";
@@ -101,7 +101,7 @@ export default function ContractExplorer() {
101101
addlClassName="ContractLink--withIcon"
102102
onClick={() => handleNavigateToContractExplorer(r.contract)}
103103
>
104-
<Icon.FileCode02 /> {r.contract}
104+
{r.contract}
105105
</Link>
106106
),
107107
},

src/app/(sidebar)/transaction-dashboard/page.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,6 @@ export default function TransactionDashboard() {
230230
fieldSize="md"
231231
id="transaction-hash"
232232
label="Transaction Hash"
233-
leftElement={<Icon.FileCode02 />}
234233
placeholder="Ex: 6a274e17afb878bc704bfe41ebf456b4c6d9df5ca59bd3e06f5c39263e484017"
235234
error={transactionHashInputError}
236235
value={transactionHashInput}

src/components/NoInfoLoadedView/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export const NoInfoLoadedView = ({
1919
data-type={type}
2020
>
2121
<Box gap="xs" direction="row" align="center" justify="center" wrap="wrap">
22-
{type === "error" ? <Icon.XSquare /> : <Icon.FileCode02 />}
22+
{type === "error" ? <Icon.XSquare /> : null}
2323
{message}
2424
</Box>
2525
</Box>

0 commit comments

Comments
 (0)