Skip to content

Commit 4d7a67b

Browse files
committed
Bump Daedalus version
1 parent e985bf7 commit 4d7a67b

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Changelog
22
=========
33

4-
## 4.2.0-FC2
4+
## 4.2.0
55

66
### Features
77

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "daedalus",
33
"productName": "Daedalus",
4-
"version": "4.2.0-FC2",
4+
"version": "4.2.0",
55
"description": "Cryptocurrency Wallet",
66
"main": "./dist/main/index.js",
77
"scripts": {

source/renderer/app/stores/SidebarStore.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ export default class SidebarStore extends Store {
6666
@action _configureCategories = () => {
6767
const {
6868
isFlight,
69-
environment: { isDev, isMainnet, isTestnet },
69+
environment: { isDev, isMainnet },
7070
} = global;
7171

7272
const {
@@ -82,7 +82,7 @@ export default class SidebarStore extends Store {
8282
[categories.STAKING_DELEGATION_COUNTDOWN.name]: false,
8383
[categories.STAKING.name]: true,
8484
[categories.SETTINGS.name]: true,
85-
[categories.VOTING.name]: isMainnet || isDev || isTestnet, // TODO - Remove testnet
85+
[categories.VOTING.name]: isMainnet || isDev,
8686
[categories.NETWORK_INFO.name]: isFlight,
8787
};
8888

0 commit comments

Comments
 (0)