-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Onbording/Homepage] AADev, i don't have a feature flag on onboarding and new homepage features #1490
Comments
🤖 Hello AADev, The feature flag for onboarding is already implemented in the Quivr codebase. It's being used to determine whether the onboarding steps should be displayed or not. The feature flag is implemented using the const shouldStepBeDisplayed = useFeatureIsOn("onboarding");
if (!shouldStepBeDisplayed) {
return <Fragment />;
} In this code, You can find this in the Onboarding.tsx file. For implementing a similar feature flag for new homepage features, you can follow a similar approach. You would use the The current version of the I hope this helps! If you have any other questions or need further clarification, feel free to ask. Best, Sources
This response is meant to be useful and save you time. It is not meant to be a precise solution, but rather a starting point for your own research. Help me be more useful! Please leave a 👍 if this is helpful and 👎 if it is irrelevant. If you want to continue the conversation, start your reply with @dosu-bot. |
Thanks for your contributions, we'll be closing this issue as it has gone stale. Feel free to reopen if you'd like to continue the discussion. |
Remove feature flags on:
The text was updated successfully, but these errors were encountered: