mirror of
https://github.com/Unleash/unleash.git
synced 2025-08-13 13:48:59 +02:00
[Remix] Cleaning up stale feature flag: celebrateUnleash with value false
This commit is contained in:
parent
05c014cde7
commit
ecf6e8df67
@ -190,7 +190,6 @@ const Header: VFC = () => {
|
||||
const onConfigureClose = () => setConfigRef(null);
|
||||
|
||||
const increaseUnleashWidth = useUiFlag('increaseUnleashWidth');
|
||||
const celebatoryUnleash = useUiFlag('celebrateUnleash');
|
||||
const insightsDashboard = useUiFlag('executiveDashboard');
|
||||
|
||||
const routes = getRoutes();
|
||||
@ -252,7 +251,7 @@ const Header: VFC = () => {
|
||||
<ThemeMode
|
||||
darkmode={
|
||||
<ConditionallyRender
|
||||
condition={celebatoryUnleash}
|
||||
condition={false}
|
||||
show={<CelebatoryUnleashLogoWhite />}
|
||||
elseShow={
|
||||
<StyledUnleashLogoWhite aria-label='Unleash logo' />
|
||||
@ -261,7 +260,7 @@ const Header: VFC = () => {
|
||||
}
|
||||
lightmode={
|
||||
<ConditionallyRender
|
||||
condition={celebatoryUnleash}
|
||||
condition={false}
|
||||
show={<StyledCelebatoryLogo />}
|
||||
elseShow={
|
||||
<StyledUnleashLogo aria-label='Unleash logo' />
|
||||
|
@ -65,7 +65,6 @@ export type UiFlags = {
|
||||
newStrategyConfiguration?: boolean;
|
||||
signals?: boolean;
|
||||
automatedActions?: boolean;
|
||||
celebrateUnleash?: boolean;
|
||||
increaseUnleashWidth?: boolean;
|
||||
featureSearchFeedback?: Variant;
|
||||
enableLicense?: boolean;
|
||||
|
@ -30,7 +30,6 @@ export type IFlagKey =
|
||||
| 'stripHeadersOnAPI'
|
||||
| 'signals'
|
||||
| 'automatedActions'
|
||||
| 'celebrateUnleash'
|
||||
| 'increaseUnleashWidth'
|
||||
| 'featureSearchFeedback'
|
||||
| 'featureSearchFeedbackPosting'
|
||||
@ -147,10 +146,6 @@ const flags: IFlags = {
|
||||
process.env.UNLEASH_EXPERIMENTAL_AUTOMATED_ACTIONS,
|
||||
false,
|
||||
),
|
||||
celebrateUnleash: parseEnvVarBoolean(
|
||||
process.env.UNLEASH_EXPERIMENTAL_CELEBRATE_UNLEASH,
|
||||
false,
|
||||
),
|
||||
increaseUnleashWidth: parseEnvVarBoolean(
|
||||
process.env.UNLEASH_EXPERIMENTAL_INCREASE_UNLEASH_WIDTH,
|
||||
false,
|
||||
|
@ -42,7 +42,6 @@ process.nextTick(async () => {
|
||||
responseTimeWithAppNameKillSwitch: false,
|
||||
stripClientHeadersOn304: true,
|
||||
stripHeadersOnAPI: true,
|
||||
celebrateUnleash: true,
|
||||
increaseUnleashWidth: true,
|
||||
newStrategyConfigurationFeedback: true,
|
||||
featureSearchFeedbackPosting: true,
|
||||
|
Loading…
Reference in New Issue
Block a user