style(font): fix lint warnings - remove unused imports and variables

- Removed unused FontFeatures, FontMetadata, FontProvider from normalize.ts imports
- Removed unused UnifiedFont from normalize.test.ts imports
- Removed unused FontSubset from store.ts imports
- Changed unused queryClient variables to void calls to suppress warnings
This commit is contained in:
Ilia Mashkov
2026-01-06 15:24:34 +03:00
parent be14a62e83
commit 2c666646cb
6 changed files with 3 additions and 8 deletions

View File

@@ -113,7 +113,7 @@ export const fetchFontshareFontsQuery: QueryFunction<
export function useFontshareFontsQuery(
params: FontshareQueryParams = {},
) {
const queryClient = useQueryClient();
useQueryClient();
const query = createQuery(() => ({
queryKey: getFontshareQueryKey(params),

View File

@@ -115,7 +115,7 @@ export const fetchGoogleFontsQuery: QueryFunction<
* ```
*/
export function useGoogleFontsQuery(params: GoogleFontsQueryParams = {}) {
const queryClient = useQueryClient();
useQueryClient();
const query = createQuery(() => ({
queryKey: getGoogleFontsQueryKey(params),