File tree Expand file tree Collapse file tree 4 files changed +3
-5
lines changed
components/NoInfoLoadedView Expand file tree Collapse file tree 4 files changed +3
-5
lines changed Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff line change 11"use client" ;
22
33import { useState } from "react" ;
4- import { Icon , Link , Loader , Text } from "@stellar/design-system" ;
4+ import { Link , Loader , Text } from "@stellar/design-system" ;
55import { useRouter } from "next/navigation" ;
66
77import { 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 } ,
Original file line number Diff line number Diff 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 }
Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments