refactor: disable intializeTelemetry
This commit is contained in:
parent
f743695572
commit
a07efc37e4
2 changed files with 4 additions and 3 deletions
|
@ -12,7 +12,6 @@
|
|||
import Loading from "./lib/Loading/Loading.svelte";
|
||||
import { settingsStore } from "./lib/stores/settingsStore";
|
||||
import getSettings from "./lib/utils/getSettings";
|
||||
import { Svrollbar } from "svrollbar";
|
||||
|
||||
let activeApp: App = "camera";
|
||||
let topics: TelemetryTopics = {
|
||||
|
@ -38,7 +37,9 @@
|
|||
if (savedSettings !== false) {
|
||||
settingsStore.set(savedSettings);
|
||||
}
|
||||
initializeTelemetry(topics, 200);
|
||||
window.ResizeObserver = ResizeObserver;
|
||||
// disabled while migrating away from python
|
||||
// initializeTelemetry(topics, 200);
|
||||
setTimeout(() => {
|
||||
loading = false;
|
||||
initializationSequence();
|
||||
|
|
|
@ -21,7 +21,7 @@
|
|||
<div
|
||||
in:fade={{ duration: 150, delay: 150 }}
|
||||
out:fade={{ duration: 150 }}
|
||||
class:overflow-hidden={true}
|
||||
class:app-container={useContainer}
|
||||
{...$$restProps}
|
||||
>
|
||||
<slot />
|
||||
|
|
Loading…
Reference in a new issue