busy-horse-73824
07/25/2023, 10:03 AMbillions-xylophone-11752
07/25/2023, 11:19 AMboolean
type flag - which inherently only provides two possible values - on
and off
. Selecting a different feature flag type (json
, number
, or string
) does give you the option to add more than 2 variations.
Given your use case, rather than creating two feature keys using the same experiment key to coordinate behaviour, is there a reason you couldn't check the same feature twice in the two different places?busy-horse-73824
07/25/2023, 1:48 PMhelpful-application-7107
07/25/2023, 4:06 PMTrue
or False
value for a boolean flag. (cc @future-teacher-7046)busy-horse-73824
07/25/2023, 8:58 PMjson
type where I just type in `true`/`false` will resolve the issue for now