Skip to content

Commit bf95414

Browse files
committed
bug fix
1 parent a044b19 commit bf95414

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/pages/Home/index.css

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ a {
99
align-items: center;
1010
position: absolute;
1111
top: 0;
12+
padding-top: 1rem;
1213
}
1314

1415
.header-content {
@@ -275,6 +276,7 @@ h1 span {
275276
flex-direction: column;
276277
align-items: center;
277278
line-height: 22px;
279+
padding-top: 3rem;
278280
}
279281

280282
.current-mined p,

src/pages/Home/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,11 +281,11 @@ const Home = () => {
281281

282282
{/* <PassportInfo /> */}
283283

284-
{!power && !isConnectionLoading &&
284+
{!isConnectionLoading &&
285285
<RegionSelector
286286
title={allRegions?.[sRegion]?.country}
287287
regionCode={allRegions?.[sRegion]?.code}
288-
action={() => navigate("/regions")}
288+
action={() => !power && navigate("/regions")}
289289
/>
290290
}
291291
</>

0 commit comments

Comments
 (0)