mirror of
https://github.com/fullstack-cash/fullstack-gatsby-theme-bch-wallet.git
synced 2026-09-21 16:52:06 -07:00
Merge pull request #145 from Permissionless-Software-Foundation/dh-remove-tag
style(alpha tag): Removed the 'Alpha' sticker
This commit is contained in:
@@ -46,7 +46,7 @@ class JsonWebTokens extends React.Component {
|
||||
id='jwt'
|
||||
name='JWT'
|
||||
placeholder='Enter FullStack.cash JWT'
|
||||
label='FullStack.cash JWT'
|
||||
label='Enter FullStack.cash JWT to increase rate limits.'
|
||||
labelPosition='above'
|
||||
onChange={_this.handleUpdate}
|
||||
/>
|
||||
|
||||
@@ -3,17 +3,23 @@ import React from 'react'
|
||||
class VersionStatus extends React.Component {
|
||||
constructor (props) {
|
||||
super(props)
|
||||
this.state = {}
|
||||
this.state = {
|
||||
show: false
|
||||
}
|
||||
}
|
||||
|
||||
render () {
|
||||
return (
|
||||
<>
|
||||
<div className='version-status'>
|
||||
<div>
|
||||
<p><b>Warning: Open Alpha - things will break</b></p>
|
||||
{this.state.show && (
|
||||
<div className='version-status'>
|
||||
<div>
|
||||
<p>
|
||||
<b>Warning: Open Beta - this app is under active develpment.</b>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
)}
|
||||
</>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user