From 3a675bf3a33fc810a430dc2d49f6de735f7354a5 Mon Sep 17 00:00:00 2001 From: hailin Date: Fri, 9 Jan 2026 21:02:44 -0800 Subject: [PATCH] fix(user-service): handle optional fingerprint parameter Co-Authored-By: Claude Opus 4.5 --- packages/services/user-service/src/auth/auth.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/services/user-service/src/auth/auth.controller.ts b/packages/services/user-service/src/auth/auth.controller.ts index 2ce8c90..68dbd47 100644 --- a/packages/services/user-service/src/auth/auth.controller.ts +++ b/packages/services/user-service/src/auth/auth.controller.ts @@ -48,7 +48,7 @@ export class AuthController { @Post('anonymous') @HttpCode(HttpStatus.OK) async createAnonymousSession(@Body() dto: CreateAnonymousDto) { - const result = await this.authService.createAnonymousSession(dto.fingerprint); + const result = await this.authService.createAnonymousSession(dto.fingerprint || ''); return { success: true, data: result,