Skip to content

Commit

Permalink
Merge pull request #3065 from dusk-network/feature-3064
Browse files Browse the repository at this point in the history
explorer: Change hosted Explorer links
  • Loading branch information
nortonandreev authored Nov 26, 2024
2 parents b04f96d + 9094861 commit f2ae2ef
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 6 deletions.
2 changes: 2 additions & 0 deletions explorer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Change WorldMap location [#2613]
- Fetch network information locally [#2662]
- Change Moonlight icon for consistency [#3038]
- Change hosted Explorer links [#3064]

### Fixed

Expand Down Expand Up @@ -94,6 +95,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
[#2649]: https://github.com/dusk-network/rusk/issues/2649
[#2662]: https://github.com/dusk-network/rusk/issues/2662
[#3038]: https://github.com/dusk-network/rusk/issues/3038
[#3064]: https://github.com/dusk-network/rusk/issues/3064

<!-- VERSIONS -->

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,15 +34,15 @@ exports[`Footer > renders the Footer component 1`] = `
<a
class="dusk-anchor dusk-anchor--off-surface footer__link"
href="https://testnet.apps.dusk.network/explorer"
href="https://apps.testnet.dusk.network/explorer"
>
Testnet
</a>
<a
class="dusk-anchor dusk-anchor--off-surface footer__link"
href="https://devnet.apps.dusk.network/explorer"
href="https://apps.devnet.dusk.network/explorer"
>
Devnet
</a>
Expand Down
4 changes: 2 additions & 2 deletions explorer/src/lib/components/footer/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@
},
{
label: "Testnet",
url: "https://testnet.apps.dusk.network/explorer",
url: "https://apps.testnet.dusk.network/explorer",
},
{
label: "Devnet",
url: "https://devnet.apps.dusk.network/explorer",
url: "https://apps.devnet.dusk.network/explorer",
},
];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,15 +165,15 @@ exports[`Main layout > should render the app's main layout 1`] = `
<a
class="dusk-anchor dusk-anchor--off-surface footer__link"
href="https://testnet.apps.dusk.network/explorer"
href="https://apps.testnet.dusk.network/explorer"
>
Testnet
</a>
<a
class="dusk-anchor dusk-anchor--off-surface footer__link"
href="https://devnet.apps.dusk.network/explorer"
href="https://apps.devnet.dusk.network/explorer"
>
Devnet
</a>
Expand Down

0 comments on commit f2ae2ef

Please sign in to comment.