File tree Expand file tree Collapse file tree 6 files changed +6
-4
lines changed
apps/browser-extension-wallet
src/views/browser-view/features Expand file tree Collapse file tree 6 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -29,11 +29,11 @@ USE_MULTI_DELEGATION_STAKING_FILTERS=false
29
29
USE_ROS_STAKING_COLUMN=false
30
30
USE_FOOR_TOPUP=true
31
31
USE_ADVANCED_RECEIVE=true
32
-
33
32
USE_POSTHOG_ANALYTICS_FOR_OPTED_OUT=false
34
33
USE_MULTI_WALLET=true
35
34
USE_SHARED_WALLET=false
36
35
USE_MESSAGE_SIGNING=true
36
+ USE_GLACIER_DROP=false
37
37
38
38
# In App URLs
39
39
CATALYST_GOOGLE_PLAY_URL=https://play.google.com/store/apps/details?id=io.iohk.vitvoting
Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ USE_POSTHOG_ANALYTICS_FOR_OPTED_OUT=false
33
33
USE_MULTI_WALLET=true
34
34
USE_SHARED_WALLET=false
35
35
USE_MESSAGE_SIGNING=true
36
+ USE_GLACIER_DROP=false
36
37
37
38
# In App URLs
38
39
CATALYST_GOOGLE_PLAY_URL=https://play.google.com/store/apps/details?id=io.iohk.vitvoting
Original file line number Diff line number Diff line change @@ -30,6 +30,7 @@ USE_MULTI_DELEGATION_STAKING_FILTERS=false
30
30
USE_ROS_STAKING_COLUMN = false
31
31
USE_FOOR_TOPUP = true
32
32
USE_MESSAGE_SIGNING = false
33
+ USE_GLACIER_DROP = false
33
34
34
35
# In App URLs
35
36
CATALYST_GOOGLE_PLAY_URL = https://play.google.com/store/apps/details?id=io.iohk.vitvoting
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ export const MidnightEventBanner = (): JSX.Element => {
43
43
} , [ ] ) ;
44
44
45
45
const shouldHide = ( ) => {
46
- if ( process . env . USE_MESSAGE_SIGNING !== 'true' ) {
46
+ if ( process . env . USE_GLACIER_DROP !== 'true' ) {
47
47
return true ;
48
48
}
49
49
Original file line number Diff line number Diff line change @@ -21,7 +21,7 @@ export const SettingsLayout = ({
21
21
22
22
const sidePanelContent = (
23
23
< div >
24
- { process . env . USE_MESSAGE_SIGNING === 'true' ? (
24
+ { process . env . USE_GLACIER_DROP === 'true' ? (
25
25
< Box mb = "$32" >
26
26
< MidnightPreLaunchSettingsBanner bannerImageUrl = { MidnightPreLaunchBannerImage } />
27
27
</ Box >
Original file line number Diff line number Diff line change @@ -171,7 +171,7 @@ export const SettingsWalletBase = <AdditionalDrawers extends string>({
171
171
< Title level = { 5 } className = { styles . heading5 } data-testid = "wallet-settings-heading" >
172
172
{ t ( 'browserView.settings.wallet.title' ) }
173
173
</ Title >
174
- { process . env . USE_MESSAGE_SIGNING === 'true' ? (
174
+ { process . env . USE_GLACIER_DROP === 'true' ? (
175
175
< SettingsLink
176
176
description = { t ( 'browserView.settings.wallet.midnight.prelaunch.description' ) }
177
177
data-testid = "settings-wallet-midnight-prelaunch-link"
You can’t perform that action at this time.
0 commit comments