forked from decentraland/marketplace
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Show rental modal on ff enabled (decentraland#1160)
* fix: Show rental modal on ff enabled * fix: Remove console log
- Loading branch information
1 parent
ad5f521
commit dfafbed
Showing
5 changed files
with
40 additions
and
9 deletions.
There are no files selected for viewing
11 changes: 10 additions & 1 deletion
11
webapp/src/components/Modals/RentalsLaunchModal/RentalsLaunchModal.container.ts
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
6 changes: 5 additions & 1 deletion
6
webapp/src/components/Modals/RentalsLaunchModal/RentalsLaunchModal.types.ts
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,6 +1,10 @@ | ||
export type Props = { | ||
isRentalsLaunchPopupEnabled: boolean | ||
isLoadingFeatureFlags: boolean | ||
} | ||
|
||
export type MapStateProps = Pick<Props, 'isRentalsLaunchPopupEnabled'> | ||
export type MapStateProps = Pick< | ||
Props, | ||
'isRentalsLaunchPopupEnabled' | 'isLoadingFeatureFlags' | ||
> | ||
export type MapDispatchProps = {} |
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