Fix broken getLocaleFromHeaders import (#3592)

feat/better-uptime
Adam Garbowski 2022-07-29 16:28:53 +02:00 committed by GitHub
parent 534efe53fe
commit 67f72223bf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 2 deletions

View File

@ -3,11 +3,10 @@ import { Session } from "next-auth";
import { serverSideTranslations } from "next-i18next/serverSideTranslations";
import { getSession } from "@calcom/lib/auth";
import { getLocaleFromHeaders } from "@calcom/lib/i18n";
import { defaultAvatarSrc } from "@calcom/lib/profile";
import prisma from "@calcom/prisma";
import { getLocaleFromHeaders } from "@lib/core/i18n/i18n.utils";
import * as trpc from "@trpc/server";
import { Maybe } from "@trpc/server";
import * as trpcNext from "@trpc/server/adapters/next";