From b8ed79f48ad2a315b93aedf1f932b6c5f075b157 Mon Sep 17 00:00:00 2001 From: MAZE Date: Thu, 13 Feb 2025 19:38:44 +0330 Subject: [PATCH] feat: remove pre-made binaurals --- src/data/sounds.ts | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/src/data/sounds.ts b/src/data/sounds.ts index e09570c..a4ed984 100644 --- a/src/data/sounds.ts +++ b/src/data/sounds.ts @@ -6,22 +6,11 @@ import { places } from './sounds/places'; import { transport } from './sounds/transport'; import { things } from './sounds/things'; import { noise } from './sounds/noise'; -import { binaural } from './sounds/binaural'; import type { Categories } from './types'; export const sounds: { categories: Categories; } = { - categories: [ - nature, - rain, - animals, - urban, - places, - transport, - things, - noise, - binaural, - ], + categories: [nature, rain, animals, urban, places, transport, things, noise], };