Skip to content

Commit

Permalink
Disable storyly feature flag + protect testing in settings with featu…
Browse files Browse the repository at this point in the history
…re flag enabled
  • Loading branch information
sshmaxime committed Apr 9, 2024
1 parent acf3dc3 commit 1197168
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
6 changes: 6 additions & 0 deletions .changeset/serious-coins-dance.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"ledger-live-desktop": patch
"@ledgerhq/live-common": patch
---

Disable storyly feature flag + protect testing in settings with feature flag enabler
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import LottieTester from "../Experimental/LottieTester";
import StorylyTester from "../Experimental/StorylyTester";
import PostOnboardingHubTester from "../Experimental/PostOnboardingHubTester";
import AllowDebugReactQueryToggle from "./AllowDebugReactQueryToggle";
import { FeatureToggle } from "@ledgerhq/live-common/featureFlags/index";

const Default = () => {
const { t } = useTranslation();
Expand Down Expand Up @@ -79,7 +80,9 @@ const Default = () => {
</Row>
<LottieTester />
<PostOnboardingHubTester />
<StorylyTester />
<FeatureToggle featureId="storyly">
<StorylyTester />
</FeatureToggle>
<ExchangeDeveloperMode />

{__DEV__ && (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ export const DEFAULT_FEATURES: Features = {
},

storyly: {
enabled: true,
enabled: false,
params: {
stories: {
recoverySeed: {
Expand Down

0 comments on commit 1197168

Please sign in to comment.