-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Remove has new navbar ff (#3053)
* fix: Remove has new navbar enabled FF * fix: Remove features from enum type
- Loading branch information
1 parent
ed9890a
commit 804d0c8
Showing
4 changed files
with
3 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import { NavbarProps } from 'decentraland-dapps/dist/containers/Navbar/Navbar.types' | ||
import { Dispatch } from 'redux' | ||
|
||
export type Props = Partial<NavbarProps> & { isNewNavbarEnabled: boolean; hasPendingTransactions: boolean } | ||
export type Props = Partial<NavbarProps> & { hasPendingTransactions: boolean } | ||
|
||
export type MapStateProps = Pick<Props, 'hasPendingTransactions' | 'isSignedIn' | 'isNewNavbarEnabled'> | ||
export type MapStateProps = Pick<Props, 'hasPendingTransactions' | 'isSignedIn'> | ||
export type MapDispatchProps = Pick<Props, 'onSignIn'> | ||
export type MapDispatch = Dispatch | ||
export type OwnProps = Partial<Props> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,7 @@ | ||
export enum FeatureName { | ||
MAINTENANCE = 'maintenance', | ||
RENTALS = 'rentals', | ||
CAMPAIGN = 'campaign', | ||
DCL_CONTROLLER_V2 = 'dcl-controller-v2', | ||
NEW_NAVBAR_DROPDOWN = 'new-navbar-dropdown', | ||
EMOTES_V2 = 'emotes-2.0', | ||
SMART_ITEMS = 'smart-items', | ||
WORLDS_FOR_ENS_OWNERS = 'worlds-for-ens-owners', | ||
SDK7_TEMPLATES = 'sdk7-templates', | ||
CREATE_SCENE_ONLY_SDK7 = 'create-scene-only-sdk7', | ||
AUTH_DAPP = 'auth-dapp', | ||
ENS_ADDRESS = 'ens-address' | ||
} |