remove auto-text-size package

This commit is contained in:
jeffvli
2025-11-21 20:43:01 -08:00
parent d16b419604
commit 925205c71b
4 changed files with 3 additions and 31 deletions
@@ -1,5 +1,4 @@
import { closeAllModals, openModal } from '@mantine/modals';
import { AutoTextSize } from 'auto-text-size';
import { forwardRef, ReactNode, Ref, useCallback, useState } from 'react';
import { useTranslation } from 'react-i18next';
import { Link } from 'react-router';
@@ -120,11 +119,7 @@ export const LibraryHeader = forwardRef(
>
{itemTypeString()}
</Text>
<h1 className={styles.title}>
<AutoTextSize maxFontSizePx={72} mode="box">
{title}
</AutoTextSize>
</h1>
<h1 className={styles.title}>{title}</h1>
{children}
</div>
)}