fix: root layout with 'master' changes

This commit is contained in:
ndom91 2024-05-05 19:03:55 +02:00
parent 1e3931e5e3
commit 5798371613
No known key found for this signature in database

View File

@ -1,3 +1,6 @@
import lscache from 'lscache';
import { BehaviorSubject, config } from 'rxjs';
import { env } from "$env/dynamic/public";
import { AIService } from '$lib/ai/service';
import { initAnalyticsIfEnabled } from '$lib/analytics/analytics';
import { AuthService } from '$lib/backend/auth';
@ -8,10 +11,7 @@ import { PromptService } from '$lib/backend/prompt';
import { UpdaterService } from '$lib/backend/updater';
import { GitHubService } from '$lib/github/service';
import { UserService } from '$lib/stores/user';
import lscache from 'lscache';
import { BehaviorSubject, config } from 'rxjs';
import { mockTauri } from '$lib/testing/index';
import { env } from "$env/dynamic/public";
// call on startup so we don't accumulate old items
lscache.flushExpired();
@ -30,17 +30,6 @@ export async function load() {
}
initAnalyticsIfEnabled();
appErrorReportingEnabled()
.onDisk()
.then((enabled) => {
if (enabled) initSentry();
});
appMetricsEnabled()
.onDisk()
.then((enabled) => {
if (enabled) initPostHog();
});
// TODO: Find a workaround to avoid this dynamic import
// https://github.com/sveltejs/kit/issues/905
const defaultPath = await (await import('@tauri-apps/api/path')).homeDir();