In useAccountCreationInstrument.js, account_created events should include performer_is_temp contextual attribute which is needed by:
metrics in GrowthBook. Right now the experiment owner must remember to include that contextual attribute when configuring the experiment in TK UI or GrowthBook.
It would be easier/simpler and better to collect this per-event (rather than experiment-wide) via:
- experiment.send( 'account_created' ); + experiment.send( 'account_created', {}, [ 'performer_is_temp' ] );
And then the experiment owner doesn't have to select performer_is_temp when configuring the experiment, and there would be no risk of an experiment owner forgetting to do that step.