diff --git a/apps/web/app/api/v1/js/sync/route.ts b/apps/web/app/api/v1/js/sync/route.ts index aec8238203..51ac378219 100644 --- a/apps/web/app/api/v1/js/sync/route.ts +++ b/apps/web/app/api/v1/js/sync/route.ts @@ -20,12 +20,6 @@ const captureNewSessionTelemetry = async (jsVersion?: string): Promise => const getEnvironmentCacheKey = (environmentId: string): string[] => ["environment", environmentId]; const getPersonCacheKey = (personId: string): string[] => ["person", personId]; const getSessionCacheKey = (sessionId: string): string[] => ["session", sessionId]; -const getEnvironmentAndPersonCacheKey = (environmentId: string, personId: string): string[] => [ - "environment", - environmentId, - "person", - personId, -]; const getSurveysCacheKey = (environmentId: string, personId: string): string[] => [ "surveys", `env-${environmentId}-surveys`,