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:
@ -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';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user