diff --git a/src/components/hero/hero.tsx b/src/components/hero/hero.tsx index c1c4d6f..75a7792 100644 --- a/src/components/hero/hero.tsx +++ b/src/components/hero/hero.tsx @@ -8,7 +8,7 @@ import { count as soundCount } from '@/lib/sounds'; import styles from './hero.module.css'; export function Hero() { - const count = useMemo(() => soundCount(true), []); + const count = useMemo(soundCount, []); return (
@@ -31,7 +31,7 @@ export function Hero() { Ambient sounds for focus and calm.

-

+{count} Sounds

+

{count} Sounds

);