We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently getting an error when passing in an array of strings if not formatted in a specific way.
const targetingKeys = {array: ["string1", "string2"]}
["string1", "string2"]
Current Behavior must passing in: ["string1", "string2"] or JSON.stringify(['string1', string2'])
Expect to be able to pass in ['string1', 'string2']
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently getting an error when passing in an array of strings if not formatted in a specific way.
const targetingKeys = {array:
["string1", "string2"]
}Current Behavior must passing in:
["string1", "string2"]
or JSON.stringify(['string1', string2'])Expect to be able to pass in ['string1', 'string2']
The text was updated successfully, but these errors were encountered: