diff options
| author | 2026-01-14 22:10:13 +0100 | |
|---|---|---|
| committer | 2026-01-14 22:10:13 +0100 | |
| commit | 01201e1aca607c8f951ca847083890ad87a6f6c6 (patch) | |
| tree | eb3a7e826767f803ae15ee8ce4278da9b06c7ff8 /ui | |
| parent | a6037e4f80e78ee1403af9631825e5faeb1a9b4d (diff) | |
| download | DropOut-01201e1aca607c8f951ca847083890ad87a6f6c6.tar.gz DropOut-01201e1aca607c8f951ca847083890ad87a6f6c6.zip | |
chore: fix import order in settings store
Diffstat (limited to 'ui')
| -rw-r--r-- | ui/src/stores/settings.svelte.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/stores/settings.svelte.ts b/ui/src/stores/settings.svelte.ts index 34b6b4c..5b87af2 100644 --- a/ui/src/stores/settings.svelte.ts +++ b/ui/src/stores/settings.svelte.ts @@ -1,5 +1,5 @@ import { invoke } from "@tauri-apps/api/core"; -import type { LauncherConfig, JavaInstallation, JavaDownloadInfo } from "../types"; +import type { JavaInstallation, LauncherConfig } from "../types"; import { uiState } from "./ui.svelte"; export class SettingsState { |