fix(v2): rename rune stores to .svelte.ts to fix rune_outside_svelte error

Svelte 5 $state/$derived runes only work in .svelte and .svelte.ts
files. The stores had plain .ts extensions, causing a blank screen with
"rune_outside_svelte" runtime error. Renamed all three store files and
updated import paths across 5 consuming files.
This commit is contained in:
Hibryda 2026-03-06 01:11:51 +01:00
parent c24e540080
commit af1516ed2b
8 changed files with 6 additions and 6 deletions

View file

@ -2,7 +2,7 @@
import { onMount, onDestroy } from 'svelte';
import SessionList from './lib/components/Sidebar/SessionList.svelte';
import TilingGrid from './lib/components/Layout/TilingGrid.svelte';
import { addPane, focusPaneByIndex, getPanes } from './lib/stores/layout';
import { addPane, focusPaneByIndex, getPanes } from './lib/stores/layout.svelte';
import { startAgentDispatcher, stopAgentDispatcher } from './lib/agent-dispatcher';
function newTerminal() {

View file

@ -10,7 +10,7 @@ import {
setAgentModel,
appendAgentMessages,
updateAgentCost,
} from './stores/agents';
} from './stores/agents.svelte';
let unlistenFn: (() => void) | null = null;

View file

@ -6,7 +6,7 @@
createAgentSession,
removeAgentSession,
type AgentSession,
} from '../../stores/agents';
} from '../../stores/agents.svelte';
import type {
AgentMessage,
TextContent,
@ -49,7 +49,7 @@
const ready = await isAgentReady();
if (!ready) {
createAgentSession(sessionId, text);
const { updateAgentStatus } = await import('../../stores/agents');
const { updateAgentStatus } = await import('../../stores/agents.svelte');
updateAgentStatus(sessionId, 'error', 'Sidecar not ready — agent features unavailable');
return;
}

View file

@ -8,7 +8,7 @@
getPaneGridArea,
focusPane,
removePane,
} from '../../stores/layout';
} from '../../stores/layout.svelte';
let gridTemplate = $derived(getGridTemplate());
let panes = $derived(getPanes());

View file

@ -7,7 +7,7 @@
getActivePreset,
setPreset,
type LayoutPreset,
} from '../../stores/layout';
} from '../../stores/layout.svelte';
let panes = $derived(getPanes());
let preset = $derived(getActivePreset());