Log events in visualization

This commit is contained in:
Dennis Schoepf 2021-08-03 14:17:38 +02:00
parent 0c542da265
commit 9c7161c8d9
11 changed files with 777 additions and 6 deletions

View file

@ -1,3 +1,4 @@
import { logger } from '../logger';
import { Scenes } from '../scenes/scenes';
import store from '../store';
@ -107,6 +108,11 @@ export class Intro {
return;
} else {
this.errorRef.style.display = 'none';
store.setState({
uid: `${Date.now()}_${name.replace(/[^a-zA-Z ]/g, '').toLowerCase()}`,
});
this.sendDemographicData(name, age, background, experience);
}
}