Hi, Ive started running our first experiment but a...
# ask-questions
a
Hi, Ive started running our first experiment but after a few hours its reporting "No data yet. Make sure your Experiment is tracking properly." Hoping someone could help diagnose
Copy code
export const growthbook = new GrowthBook({
  apiHost: '<https://growth-book-api.ourbusiness.co.uk>',
  clientKey: process.env.REACT_APP_GROWTHBOOK_CLIENT_KEY,
  enableDevMode: process.env.REACT_APP_ENV !== 'production',
  plugins: [autoAttributesPlugin(), thirdPartyTrackingPlugin({ trackers: ['ga4', 'gtm'] })],
});
Copy code
AppContainer

  useEffect(() => {
    // Load features asynchronously when the app renders
    growthbook.init({ streaming: true });
  }, []);
Copy code
// Change experiment results with
  const featureOn = useFeatureIsOn('remove-operator-names');
// Or
growthbook.isOn('remove-operator-names')
Experiment is on and has a 50/50 split, looking for purchases
s
If you look in the browser network tab, are you able to see the ga4/gtm calls including the experiment data?