1
0
mirror of https://github.com/Unleash/unleash.git synced 2025-08-23 13:46:45 +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 onConfigureClose = () => setConfigRef(null);
const increaseUnleashWidth = useUiFlag('increaseUnleashWidth'); const increaseUnleashWidth = useUiFlag('increaseUnleashWidth');
const celebatoryUnleash = useUiFlag('celebrateUnleash');
const insightsDashboard = useUiFlag('executiveDashboard'); const insightsDashboard = useUiFlag('executiveDashboard');
const routes = getRoutes(); const routes = getRoutes();
@ -252,7 +251,7 @@ const Header: VFC = () => {
<ThemeMode <ThemeMode
darkmode={ darkmode={
<ConditionallyRender <ConditionallyRender
condition={celebatoryUnleash} condition={false}
show={<CelebatoryUnleashLogoWhite />} show={<CelebatoryUnleashLogoWhite />}
elseShow={ elseShow={
<StyledUnleashLogoWhite aria-label='Unleash logo' /> <StyledUnleashLogoWhite aria-label='Unleash logo' />
@ -261,7 +260,7 @@ const Header: VFC = () => {
} }
lightmode={ lightmode={
<ConditionallyRender <ConditionallyRender
condition={celebatoryUnleash} condition={false}
show={<StyledCelebatoryLogo />} show={<StyledCelebatoryLogo />}
elseShow={ elseShow={
<StyledUnleashLogo aria-label='Unleash logo' /> <StyledUnleashLogo aria-label='Unleash logo' />

View File

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

View File

@ -30,7 +30,6 @@ export type IFlagKey =
| 'stripHeadersOnAPI' | 'stripHeadersOnAPI'
| 'signals' | 'signals'
| 'automatedActions' | 'automatedActions'
| 'celebrateUnleash'
| 'increaseUnleashWidth' | 'increaseUnleashWidth'
| 'featureSearchFeedback' | 'featureSearchFeedback'
| 'featureSearchFeedbackPosting' | 'featureSearchFeedbackPosting'
@ -147,10 +146,6 @@ const flags: IFlags = {
process.env.UNLEASH_EXPERIMENTAL_AUTOMATED_ACTIONS, process.env.UNLEASH_EXPERIMENTAL_AUTOMATED_ACTIONS,
false, false,
), ),
celebrateUnleash: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_CELEBRATE_UNLEASH,
false,
),
increaseUnleashWidth: parseEnvVarBoolean( increaseUnleashWidth: parseEnvVarBoolean(
process.env.UNLEASH_EXPERIMENTAL_INCREASE_UNLEASH_WIDTH, process.env.UNLEASH_EXPERIMENTAL_INCREASE_UNLEASH_WIDTH,
false, false,

View File

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