fix(ui): remove old logs
This commit is contained in:
parent
b03b790cd2
commit
db10d7afdb
3 changed files with 1 additions and 6 deletions
|
|
@ -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));
|
||||
};
|
||||
|
|
|
|||
|
|
@ -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>
|
||||
|
|
|
|||
|
|
@ -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', () => {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue