fix(Page): remove unused code and misleading comments

This commit is contained in:
Ilia Mashkov
2026-01-16 10:24:06 +03:00
parent fefaf3f4c7
commit deaf38f8ec

View File

@@ -1,27 +1,8 @@
<script lang="ts">
/**
* Page Component
*
* Main page route component. Displays the font list and allows testing
* the unified font store functionality. Fetches fonts on mount and displays
* them using the FontList component.
*
* Receives unifiedFontStore from context created in Layout.svelte.
*/
// import {
// UNIFIED_FONT_STORE_KEY,
// type UnifiedFontStore,
// } from '$entities/Font/model/store/unifiedFontStore.svelte';
import FontList from '$entities/Font/ui/FontList/FontList.svelte';
// import { applyFilters } from '$features/FontManagement';
import {
getContext,
onMount,
} from 'svelte';
// Receive store from context (created in Layout.svelte)
// const unifiedFontStore: UnifiedFontStore = getContext(UNIFIED_FONT_STORE_KEY);
</script>
<!-- Font List -->
<FontList />
<div />