diff --git a/src/widgets/ComparisonView/ui/FontList/FontList.svelte b/src/widgets/ComparisonView/ui/FontList/FontList.svelte index e435dfe..8368e14 100644 --- a/src/widgets/ComparisonView/ui/FontList/FontList.svelte +++ b/src/widgets/ComparisonView/ui/FontList/FontList.svelte @@ -9,7 +9,6 @@ import { FontVirtualList, type UnifiedFont, } from '$entities/Font'; -import { typographySettingsStore } from '$features/SetupFont'; import { Button, Label, @@ -20,8 +19,6 @@ import { crossfade } from 'svelte/transition'; import { comparisonStore } from '../../model'; const side = $derived(comparisonStore.side); -const typography = $derived(typographySettingsStore); - let prevIndexA: number | null = null; let prevIndexB: number | null = null; let selectedIndexA: number | null = null;