diff --git a/src/components/admin-lte/configure/jwt.js b/src/components/admin-lte/configure/jwt.js index 79a8596..0776ebf 100644 --- a/src/components/admin-lte/configure/jwt.js +++ b/src/components/admin-lte/configure/jwt.js @@ -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} /> diff --git a/src/components/version-status.js b/src/components/version-status.js index f93f919..086d796 100644 --- a/src/components/version-status.js +++ b/src/components/version-status.js @@ -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 ( <> -
-
-

Warning: Open Alpha - things will break

+ {this.state.show && ( +
+
+

+ Warning: Open Beta - this app is under active develpment. +

+
-
+ )} ) }