fix(Page): remove unused code and misleading comments
This commit is contained in:
@@ -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 />
|
||||
|
||||
Reference in New Issue
Block a user