Skip to content

Commit

Permalink
feat(wallet-mobile): Enable notifications on nightly
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljscript committed Jan 20, 2025
1 parent f4788dc commit e2b5acf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/wallet-mobile/src/kernel/features.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import {isDev} from './env'
import {isDev, isNightly} from './env'

export const features = {
useTestnet: false,
prefillWalletInfo: false,
showProdPoolsInDev: isDev,
moderatingNftsEnabled: false,
notifications: isDev,
notifications: isDev || isNightly,
poolTransition: true,
portfolioPerformance: false,
portfolioNews: false,
Expand Down

0 comments on commit e2b5acf

Please sign in to comment.