fix(FontApplicator): remove unused prop

This commit is contained in:
Ilia Mashkov
2026-02-12 11:21:04 +03:00
parent 7dce7911c0
commit 0e85851cfd

View File

@@ -49,10 +49,7 @@ const status = $derived(
);
// The "Show" condition: Font is loaded OR it errored out OR it's a noTouch preview (like in search)
const shouldReveal = $derived.by(() => {
if (noTouch) return true;
return status === 'loaded' || status === 'error';
});
const shouldReveal = $derived(status === 'loaded' || status === 'error');
const transitionClasses = $derived(
prefersReducedMotion.current