fix: remove public beta flags

This commit is contained in:
Baptiste Grob
2020-10-07 12:42:25 +02:00
parent 83bf5d7192
commit d088d74069
4 changed files with 5 additions and 21 deletions

View File

@@ -28,8 +28,6 @@ import {
import { PureViewCtrl } from '@Views/abstract/pure_view_ctrl';
import { confirmDialog } from '@/services/alertService';
declare const __PUBLIC_BETA__: boolean;
/**
* Disable before production release.
* Anyone who used the beta will still have access to
@@ -141,9 +139,6 @@ class FooterViewCtrl extends PureViewCtrl<{}, {
reloadUpgradeStatus() {
this.application.checkForSecurityUpdate().then((available) => {
if (__PUBLIC_BETA__) {
return;
}
this.setState({
dataUpgradeAvailable: available
});