Hi,
I ran into an issue when using the Multi Provider.
These two lines don’t work for me as-is (link):
const hookContext = this.hookContexts.get(context);
const hookHints = this.hookHints.get(context);
But when I change them to this, it works:
const hookContext = this.hookContexts.get(context.context);
const hookHints = this.hookHints.get(context.context);
Has anyone else experienced this?
I’m using FlagdProvider and the EnvVarProvider provider.
Thanks!