From cdc286b3fd122f1aa2960383c9672852ef3089a7 Mon Sep 17 00:00:00 2001 From: Kashish Sahu <125540624+gitKashish@users.noreply.github.com> Date: Tue, 17 Feb 2026 12:39:30 +0000 Subject: [PATCH] fix(api): incorrect error message for invalid uuidv4 client ID (#291) --- apps/api/src/utils/auth.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/utils/auth.ts b/apps/api/src/utils/auth.ts index 23e8758f..05df0513 100644 --- a/apps/api/src/utils/auth.ts +++ b/apps/api/src/utils/auth.ts @@ -73,7 +73,7 @@ export async function validateSdkRequest( clientId, ) ) { - throw createError('Ingestion: Clean ID must be a valid UUIDv4'); + throw createError('Ingestion: Client ID must be a valid UUIDv4'); } const client = await getClientByIdCached(clientId);