From 790bf925bb0c7fce56cefddb5a560b561c92ccde Mon Sep 17 00:00:00 2001 From: redshift <213178690+1ftredsh@users.noreply.github.com> Date: Thu, 30 Apr 2026 14:06:07 +0530 Subject: [PATCH] added the suffixed client id. a tiny miss in the code. --- src/utils/clients.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/clients.ts b/src/utils/clients.ts index d3da304..802ebdc 100644 --- a/src/utils/clients.ts +++ b/src/utils/clients.ts @@ -144,7 +144,7 @@ export async function addDaemonClient( const result = await callDaemon("/clients/add", { method: "POST", - body: { name, id: derivedId }, + body: { name, id: clientId }, });