Updated to upstream
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
cami 2021-07-24 02:11:17 +02:00
parent 74ca8d8973
commit 8bb37bbc21
2 changed files with 5 additions and 5 deletions

View file

@ -8,6 +8,8 @@ services:
backend-prod: backend-prod:
image: caminsha/bt-backend image: caminsha/bt-backend
container_name: backend-prod container_name: backend-prod
volumes:
- "./database.db:/app/database.db:z"
environment: environment:
DEBUG: "no" DEBUG: "no"
PORT: 5050 PORT: 5050

View file

@ -110,11 +110,9 @@ export default function Study() {
setState(STATES.NORMAL); setState(STATES.NORMAL);
handleLoggerOn(); handleLoggerOn();
// map username and session with the logs // map username and session with the logs
_logger.current.logCustomEvent( _logger.current.logCustomEvent({
{ name: serverUsername,
name: serverUsername, });
},
);
}; };
const resetInputValues = () => { const resetInputValues = () => {