Skip to content

Commit

Permalink
fix: enable nav sidebar for previous uis
Browse files Browse the repository at this point in the history
  • Loading branch information
kwasniew committed Oct 22, 2024
1 parent 15f55c7 commit 56f2101
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/lib/types/experimental.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ export type IFlagKey =
| 'unleashAI'
| 'webhookDomainLogging'
| 'addonUsageMetrics'
| 'releasePlans';
| 'releasePlans'
| 'navigationSidebar';

export type IFlags = Partial<{ [key in IFlagKey]: boolean | Variant }>;

Expand Down Expand Up @@ -311,6 +312,10 @@ const flags: IFlags = {
process.env.UNLEASH_EXPERIMENTAL_RELEASE_PLANS,
false,
),
navigationSidebar: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_SIDEBAR_NAVIGATION,
true,
),
};

export const defaultExperimentalOptions: IExperimentalOptions = {
Expand Down

0 comments on commit 56f2101

Please sign in to comment.