Show update state on test

This commit is contained in:
Becca 2022-02-02 13:10:32 -05:00
parent 24241810c4
commit ef61cf1f3e

View file

@ -177,14 +177,11 @@ export class About extends React.Component<IAboutProps, IAboutState> {
return null
}
if (
__RELEASE_CHANNEL__ === 'development' ||
__RELEASE_CHANNEL__ === 'test'
) {
if (__RELEASE_CHANNEL__ === 'development') {
return (
<p>
The application is currently running in development or test mode and
will not receive any updates.
The application is currently running in development and will not
receive any updates.
</p>
)
}
@ -213,10 +210,7 @@ export class About extends React.Component<IAboutProps, IAboutState> {
return null
}
if (
__RELEASE_CHANNEL__ === 'development' ||
__RELEASE_CHANNEL__ === 'test'
) {
if (__RELEASE_CHANNEL__ === 'development') {
return null
}