From d32a279949e73b1149587341034cefeb1d0dc06b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carl-Gerhard=20Lindesva=CC=88rd?= Date: Tue, 20 Jan 2026 14:08:44 +0100 Subject: [PATCH] fix: profileId --- apps/api/src/controllers/track.controller.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/api/src/controllers/track.controller.ts b/apps/api/src/controllers/track.controller.ts index bf90ce3d..74a2da76 100644 --- a/apps/api/src/controllers/track.controller.ts +++ b/apps/api/src/controllers/track.controller.ts @@ -49,7 +49,7 @@ function getIdentity(body: ITrackHandlerPayload): IIdentifyPayload | undefined { identity || (body.payload.profileId ? { - profileId: body.payload.profileId, + profileId: String(body.payload.profileId), } : undefined) );