Skip to content

Commit

Permalink
fix-network-links (#323)
Browse files Browse the repository at this point in the history
  • Loading branch information
Megha-Dev-19 authored May 27, 2024
1 parent 519a5a8 commit 82390ee
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions apps/old/widget/components/Navbar.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -281,20 +281,20 @@ function Navbar(props) {
>
{Object.entries(config).map(([key, value]) => (
<li key={key}>
<Link
<a
style={{
textDecoration: "none",
color: value.disabled ? "green" : "#9ba1a6",
}}
to={value.href}
href={value.href}
className="dropdown-item d-flex align-items-center gap-2"
>
<i
className={value.icon}
style={{ color: value.disabled ? "green" : "#9ba1a6" }}
/>
<span>{value.label}</span>
</Link>
</a>
</li>
))}
</ul>
Expand Down

0 comments on commit 82390ee

Please sign in to comment.