fix(ui): remove old logs

This commit is contained in:
nick-delirium 2024-01-22 16:17:22 +01:00
parent b03b790cd2
commit db10d7afdb
3 changed files with 1 additions and 6 deletions

View file

@ -81,7 +81,6 @@ const StepList = React.memo((props: StepListProps) => {
const onClick = (step: any) => {
const { siteId, history } = props;
console.log('step', withSiteId(onboardingRoute(step.url), siteId));
hideModal();
history.push(withSiteId(onboardingRoute(step.url), siteId));
};

View file

@ -58,7 +58,7 @@ function DefaultTimezone() {
sessionSettings.updateKey('shownTimezone', value)
setShownTimezone(value)
}
console.log(shownTimezone, sessionSettings.shownTimezone)
return (
<>
<h3 className="text-lg">Default Timezone</h3>

View file

@ -39,16 +39,12 @@ export default class Call {
private getAssistVersion: () => number
) {
socket.on('call_end', (d) => {
console.log(d, socket.id)
this.onRemoteCallEnd()
});
socket.on('videofeed', ({ streamId, enabled }) => {
console.log(streamId, enabled);
console.log(this.videoStreams);
if (this.videoStreams[streamId]) {
this.videoStreams[streamId].enabled = enabled;
}
console.log(this.videoStreams);
});
let reconnecting = false;
socket.on('SESSION_DISCONNECTED', () => {