fix(gauntlet): Group A — wrong relative import in ContentView

ContentView had `../../lib/stores/content.svelte` relative path
which resolves to frontend/lib/ instead of frontend/src/lib/.
Fixed to `$lib/stores/content.svelte` alias.

👾 Generated with [Letta Code](https://letta.com)

Co-Authored-By: Letta Code <noreply@letta.com>
This commit is contained in:
Nick
2026-06-20 22:43:22 +01:00
parent 17c7b56c64
commit a2a7a78213

View File

@ -1,6 +1,5 @@
<script lang="ts">
import { contentStore } from '../../lib/stores/content.svelte';
import type { VideoMetadata } from '../../lib/stores/content.svelte';
import { contentStore, type VideoMetadata } from '$lib/stores/content.svelte';
import { open } from '@tauri-apps/plugin-dialog';
import { concreteDate } from '$lib/utils/time';