Skip to content

Commit

Permalink
fix: Removed console log
Browse files Browse the repository at this point in the history
  • Loading branch information
LautaroPetaccio committed Jan 19, 2024
1 parent 39bb847 commit 619540c
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions webapp/src/modules/features/selectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -208,9 +208,7 @@ export const getIsMarketplaceServerEnabled = (state: RootState) => {
}

export const getIsBuyCrossChainEnabled = (state: RootState) => {
const hasLoadedInitialFlagsx = hasLoadedInitialFlags(state)
console.log('Has loaded initial feature flags?', hasLoadedInitialFlagsx)
if (hasLoadedInitialFlagsx) {
if (hasLoadedInitialFlags(state)) {
return getIsFeatureEnabled(
state,
ApplicationName.MARKETPLACE,
Expand Down

0 comments on commit 619540c

Please sign in to comment.