diff --git a/packages/trpc/server/routers/publicViewer/countryCode.handler.ts b/packages/trpc/server/routers/publicViewer/countryCode.handler.ts index ed67a3d959..181a10a1cb 100644 --- a/packages/trpc/server/routers/publicViewer/countryCode.handler.ts +++ b/packages/trpc/server/routers/publicViewer/countryCode.handler.ts @@ -7,7 +7,9 @@ type CountryCodeOptions = { export const countryCodeHandler = async ({ ctx }: CountryCodeOptions) => { const { req } = ctx; - const countryCode: string | string[] = req?.headers?.["x-vercel-ip-country"] ?? ""; + // const countryCode: string | string[] = + // req?.headers?.["​cf-ipcountry"] ?? req?.headers?.["x-vercel-ip-country"] ?? ""; + const countryCode: string | string[] = req?.headers?.["​cf-ipcountry"] ?? ""; return { countryCode: Array.isArray(countryCode) ? countryCode[0] : countryCode }; };