Update app version

This commit is contained in:
Tanner Collin 2022-01-26 04:25:28 +00:00
parent 987e2a7465
commit 4042c37112
2 changed files with 2 additions and 2 deletions

View File

@ -282,7 +282,7 @@ DEFAULT_FROM_EMAIL = 'Protospace Portal <portal@mg.protospace.ca>'
if DEBUG: logger.info('Debug mode ON') if DEBUG: logger.info('Debug mode ON')
logger.info('Test logging for each thread') logger.info('Test logging for each thread')
APP_VERSION = 1 # TODO: automate this APP_VERSION = 2 # TODO: automate this
#import logging_tree #import logging_tree
#logging_tree.printout() #logging_tree.printout()

View File

@ -27,7 +27,7 @@ import { PasswordReset, ConfirmReset } from './PasswordReset.js';
import { NotFound, PleaseLogin } from './Misc.js'; import { NotFound, PleaseLogin } from './Misc.js';
import { Footer } from './Footer.js'; import { Footer } from './Footer.js';
const APP_VERSION = 1; // TODO: automate this const APP_VERSION = 2; // TODO: automate this
function App() { function App() {
const [token, setToken] = useState(localStorage.getItem('token', '')); const [token, setToken] = useState(localStorage.getItem('token', ''));