Skip to content

Commit 38b0df0

Browse files
refactor: simplify animationFeatureFlag decision logic to always return false
1 parent 75fc41b commit 38b0df0

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

src/app/animation/flags.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,5 @@ import { flag } from "flags/next";
33
export const animationFeatureFlag = flag<boolean>({
44
key: "animation-feature",
55
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-
},
6+
decide: () => false,
117
});

0 commit comments

Comments
 (0)