This message was deleted.
# ask-questions
w
This message was deleted.
f
It should update features/experiment values when attributes change
I wonder if it’s a problem with the devtools
Is update attributes your method?
j
Thanks for your reply. I use the native growthbook react hook
Copy code
import { useGrowthBook } from "@growthbook/growthbook-react";

const gb = useGrowthBook();

gb.updateAttributes({
        userId: user?.id ?? "-1",
        deviceId,
        isMobile,
      });
How can I check if it's something wrong with the devtool? Will
trackingCallback
be called if there is any experiment is updated?
I think I misunderstood the
trackingCallback
meaning. Actually, the experiment's variation was updated, but I thought as soon as the variation is updated,
trackingCallback
will be called again.