From 935e27f9ca610fc9370f0fd7d504252bf95a6a2d Mon Sep 17 00:00:00 2001 From: Agusti Fernandez Pardo Date: Fri, 8 Apr 2022 21:08:25 +0200 Subject: [PATCH] Fix calcom user bad import --- pages/api/users/[id].ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/api/users/[id].ts b/pages/api/users/[id].ts index e309288253..3802a4fb90 100644 --- a/pages/api/users/[id].ts +++ b/pages/api/users/[id].ts @@ -4,7 +4,7 @@ import prisma from "@calcom/prisma"; import { withMiddleware } from "@lib/helpers/withMiddleware"; import type { UserResponse } from "@lib/types"; -import { getCalcomUserId } from "@lib/utils/getUserFromHeader"; +import { getCalcomUserId } from "@lib/utils/getCalcomUserId"; import { schemaQueryIdParseInt, withValidQueryIdTransformParseInt,