Skip to content

Commit

Permalink
Merge pull request #2020 from dusk-network/feature-2019
Browse files Browse the repository at this point in the history
explorer: Remove Devnet Option
  • Loading branch information
nortonandreev authored Jul 24, 2024
2 parents 66acccf + f3113b1 commit 7a11bb1
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 14 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,6 @@ exports[`Navbar > renders the Navbar component 1`] = `
Testnet
</option>
<option
value="devnet.nodes.dusk.network"
>
Devnet
</option>
</select>
Expand Down
1 change: 0 additions & 1 deletion explorer/src/lib/stores/__tests__/appStore.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ describe("appStore", () => {
const { env } = import.meta;
const expectedNetworks = [
{ label: "Testnet", value: env.VITE_DUSK_TESTNET_NODE },
{ label: "Devnet", value: env.VITE_DUSK_DEVNET_NODE },
];

expect(appStore).toHaveProperty("subscribe", expect.any(Function));
Expand Down
1 change: 0 additions & 1 deletion explorer/src/lib/stores/appStore.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import { browser } from "$app/environment";
/** @type {NetworkOption[]}*/
const networks = [
{ label: "Testnet", value: import.meta.env.VITE_DUSK_TESTNET_NODE },
{ label: "Devnet", value: import.meta.env.VITE_DUSK_DEVNET_NODE },
];

const browserDefaults = browser
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,6 @@ exports[`Main layout > should render the app's main layout 1`] = `
Testnet
</option>
<option
value="devnet.nodes.dusk.network"
>
Devnet
</option>
</select>
Expand Down

0 comments on commit 7a11bb1

Please sign in to comment.