fix(api): incorrect error message for invalid uuidv4 client ID (#291)

This commit is contained in:
Kashish Sahu
2026-02-17 12:39:30 +00:00
committed by GitHub
parent fbb2606130
commit cdc286b3fd

View File

@@ -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);