diff --git a/api/src/context-base/context.ts b/api/src/context-base/context.ts index a4486fd3ed3..2a6804312c8 100644 --- a/api/src/context-base/context.ts +++ b/api/src/context-base/context.ts @@ -29,7 +29,7 @@ export class Context { /** Get a key to uniquely identify a context value */ public static createKey(description: string) { - return Symbol(description); + return Symbol.for(description); } /**