chore: remove unused code

This commit is contained in:
Ilia Mashkov
2026-02-09 17:33:09 +03:00
parent 61c67acfb8
commit 422363d329
6 changed files with 1 additions and 22 deletions
-1
View File
@@ -38,7 +38,6 @@ export {
appliedFontsManager,
createUnifiedFontStore,
type FontConfigRequest,
selectedFontsStore,
type UnifiedFontStore,
unifiedFontStore,
} from './store';
-3
View File
@@ -18,6 +18,3 @@ export {
appliedFontsManager,
type FontConfigRequest,
} from './appliedFontsStore/appliedFontsStore.svelte';
// Selected fonts store (user selection - unchanged)
export { selectedFontsStore } from './selectedFontsStore/selectedFontsStore.svelte';
@@ -1,7 +0,0 @@
import { createEntityStore } from '$shared/lib';
import type { UnifiedFont } from '../../types';
/**
* Store that handles collection of selected fonts
*/
export const selectedFontsStore = createEntityStore<UnifiedFont>([]);