Remove disable upgrade check bool

This commit is contained in:
Gabe Kangas
2021-02-03 19:14:25 -08:00
parent 3790aba34f
commit ed80ac13b5
2 changed files with 1 additions and 2 deletions

View File

@@ -81,7 +81,7 @@ export default function MainLayout(props) {
};
useEffect(() => {
if (!performedUpgradeCheck && !context.disableUpgradeChecks) {
if (!performedUpgradeCheck) {
checkForUpgrade();
performedUpgradeCheck = true
}