1
0
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:
Hendrix Bot 2024-03-14 15:17:50 +00:00
parent 05c014cde7
commit ecf6e8df67
4 changed files with 2 additions and 10 deletions

View File

@ -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' />

View File

@ -65,7 +65,6 @@ export type UiFlags = {
newStrategyConfiguration?: boolean;
signals?: boolean;
automatedActions?: boolean;
celebrateUnleash?: boolean;
increaseUnleashWidth?: boolean;
featureSearchFeedback?: Variant;
enableLicense?: boolean;

View File

@ -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,

View File

@ -42,7 +42,6 @@ process.nextTick(async () => {
responseTimeWithAppNameKillSwitch: false,
stripClientHeadersOn304: true,
stripHeadersOnAPI: true,
celebrateUnleash: true,
increaseUnleashWidth: true,
newStrategyConfigurationFeedback: true,
featureSearchFeedbackPosting: true,