We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75fc41b commit 38b0df0Copy full SHA for 38b0df0
src/app/animation/flags.ts
@@ -3,9 +3,5 @@ import { flag } from "flags/next";
3
export const animationFeatureFlag = flag<boolean>({
4
key: "animation-feature",
5
description: "Enable animations in the app.",
6
- decide: () => {
7
- const isEnabled = process.env.ANIMATION_FEATURE_ENABLED === "true";
8
- console.log("Animation Feature Flag Enabled:", isEnabled);
9
- return isEnabled;
10
- },
+ decide: () => false,
11
});
0 commit comments