From 77342f95fe39bcb772bffe478641d09e1f52ea03 Mon Sep 17 00:00:00 2001 From: Extremesecrecy <10959169+extremesecrecy@users.noreply.github.com> Date: Thu, 24 Jul 2025 10:47:11 -0700 Subject: [PATCH] Update AlsaDeviceInfo.tsx Assumed the id was a number. Changed the interface ID to string --- vite/src/pipedal/AlsaDeviceInfo.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vite/src/pipedal/AlsaDeviceInfo.tsx b/vite/src/pipedal/AlsaDeviceInfo.tsx index e1c3c8e..581ae78 100644 --- a/vite/src/pipedal/AlsaDeviceInfo.tsx +++ b/vite/src/pipedal/AlsaDeviceInfo.tsx @@ -2,7 +2,7 @@ interface AlsaDeviceInfoJson { cardId: number; - id: number; + id: string; name: string; longName: string; sampleRates: number[];