Skip to content

Commit

Permalink
Fix import and undo force
Browse files Browse the repository at this point in the history
  • Loading branch information
michaeljscript committed Oct 15, 2024
1 parent e7743f9 commit bcfa764
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import {Notifications} from '@jamsinclair/react-native-notifications'
import {NotificationBackgroundFetchResult} from '@jamsinclair/react-native-notifications'
import React from 'react'
import {PermissionsAndroid} from 'react-native'

import {notificationManager} from './notification-manager'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ const syncAllWallets = async (walletManager: WalletManager) => {
for (const id of ids) {
const wallet = walletManager.getWalletById(id)
if (!wallet) continue
await wallet.sync({isForced: true})
await wallet.sync({})
}
}

Expand Down

0 comments on commit bcfa764

Please sign in to comment.