fix: formatting issue and build error (#820)

This commit is contained in:
Matti Nannt
2023-09-16 16:05:12 +09:00
committed by GitHub
parent 73ba6feec2
commit b04acae0ba

View File

@@ -20,12 +20,6 @@ const captureNewSessionTelemetry = async (jsVersion?: string): Promise<void> =>
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`,