Skip to content

Commit 4a3595b

Browse files
committed
Fix production bugs and content issues
1 parent 957a19e commit 4a3595b

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

.dockerignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
node_modules
2+
.parcel-cache
23
Dockerfile
34
.git
45
.vim

src/components/About.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function About(props) {
2121
<li>Watch the countdown timer and profit!</li>
2222
</ol>
2323
<h5>Run REStake yourself</h5>
24-
<p>REStake is intended to be run by many validators, giving delegators the choice of operator for many different networks. Ask your favourite validator to become an operator or run one yourself, it's easy!</p>
24+
<p>REStake is intended to be run by as many validators as possible, giving delegators the choice of who to auto-compound their rewards with. Ask your favourite validator to become an operator or run it yourself, it's easy!</p>
2525
<p>The project is entirely open source and instructions for running and contributing to REStake can be <a href="https://github.com/eco-stake/restake" target="_blank" rel="noreferrer">found on Github</a>.</p>
2626
<h5>ECO Stake 🌱</h5>
2727
<p>ECO Stake is a climate positive validator, but we care about the Cosmos ecosystem too. We built REStake to make it easy for all validators to run an autocompounder with Authz, and it's one of many projects we work on in the ecosystem. <a href="https://ecostake.com" target="_blank" rel="noreferrer">Delegate with us</a> to support more projects like this.</p>

src/components/NetworkFinder.js

+1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@ function NetworkFinder() {
5050
return
5151
}
5252
if(!params.network){
53+
let url = "/" + networkName
5354
navigate(url, networkName);
5455
}
5556
Network(data).then(network => {

src/components/Validators.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function Validators(props) {
4646
}
4747

4848
function renderItem(item, isOperator){
49-
variant = isOperator ? 'warning' : null
49+
let variant = isOperator ? 'warning' : null
5050
variant = variant ? 'table-' + variant : ''
5151
return (
5252
<tr key={item.operator_address} className={variant}>

src/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@
77
<meta name="theme-color" content="#000000" />
88
<meta
99
name="description"
10-
content="REStake auto-compounds your staking earnings once per day, for multiple validators"
10+
content="REStake auto-compounds your staking rewards for you"
1111
/>
1212
<link rel="apple-touch-icon" href="./assets/logo.png" />
1313
<!--
1414
manifest.json provides metadata used when your web app is installed on a
1515
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
1616
-->
1717
<link rel="manifest" href="./manifest.json" />
18-
<title>REStake | Auto-compound your staking earnings for any Cosmos blockchain</title>
18+
<title>REStake | Auto-compound your staking rewards</title>
1919
<script type="module" src="index.js"></script>
2020
</head>
2121
<body>

0 commit comments

Comments
 (0)