From 90b385542db5936599e89fdc783c1a50ef7439f2 Mon Sep 17 00:00:00 2001 From: Ferdinand Malcher Date: Sat, 14 Sep 2024 20:49:47 +0200 Subject: [PATCH] chore: remove unused imports --- packages/mixer-connection/src/lib/utils.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/packages/mixer-connection/src/lib/utils.ts b/packages/mixer-connection/src/lib/utils.ts index 20f2d6f..465515b 100644 --- a/packages/mixer-connection/src/lib/utils.ts +++ b/packages/mixer-connection/src/lib/utils.ts @@ -1,5 +1,4 @@ -import { SoundcraftUI } from './soundcraft-ui'; -import { ChannelType, MixerModel } from './types'; +import { ChannelType } from './types'; /** Clamp numeric value to min and max */ export function clamp(value: number, min: number, max: number): number {