Skip to content

Commit

Permalink
ran pretter
Browse files Browse the repository at this point in the history
  • Loading branch information
thomivy committed Dec 13, 2023
1 parent 3c97907 commit c9bd82e
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions components/NetworkConfig.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ const NetworkCard = ({
};

return (
<div className={styles.networkCard}>{cardTitle}
<div className={styles.networkCard}>
{cardTitle}
<div className={styles.networkType}>{type}</div>
<div className={styles.titleContainer} onClick={toggleCollapse}>
<h2 className={styles.networkTitle}>{network}</h2>
Expand Down Expand Up @@ -90,7 +91,8 @@ const NetworkCard = ({
const NetworkInfo = () => {
// Define the network details here or fetch from an API
const networks = [
{ cardTitle: "Network Information",
{
cardTitle: "Network Information",
network: "Tangle Network",
type: "Testnet",
symbol: "tTNT",
Expand Down

0 comments on commit c9bd82e

Please sign in to comment.