Skip to content

Commit 7ad0465

Browse files
authored
Merge pull request #1906 from oasisprotocol/lw/fix-helpscreen
Fix helpscreen visibility by changing homescreen background
2 parents a57f555 + 0a2296f commit 7ad0465

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

.changelog/1906.bugfix.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix helpscreen visibility by changing homescreen background

src/app/pages/HomePage/Graph/ParaTimeSelector/index.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@ const ParaTimeSelectorGlobe = styled(Box, {
7575
transform: 'translateX(-50%)',
7676
color: theme.palette.layout.main,
7777
backgroundImage: `url("${
78-
network === Network.testnet ? paratimeSelectorGlobeTestnet : paratimeSelectorGlobe
78+
network === Network.testnet || network === Network.localnet
79+
? paratimeSelectorGlobeTestnet
80+
: paratimeSelectorGlobe
7981
}")`,
8082
transitionProperty: 'background-image',
8183
transitionDuration: `${theme.transitions.duration.complex}ms`,

0 commit comments

Comments
 (0)