hey, we had a next.js project using ISR, recently ...
# ask-questions
h
hey, we had a next.js project using ISR, recently we set a flag to test the new Nav. When we use the growthbook chrome plugin to get different versions, the plugin seems can't get the client flag value when the route changes. is there anyway we can fix this? thanks! here are the test:
Copy code
import { useFeatureIsOn } from '<@U052WVA1MH6>/growthbook-react';
 
 const isClientSideNavFlagEnabled = useFeatureIsOn(
    FeatureFlags.TOP_NAV_REFRESH
  );
  console.warn('TopNav-isClientSideNavFlagEnabled', isClientSideNavFlagEnabled);