Fix wallet save

This commit is contained in:
ekzyis 2024-11-28 01:16:30 +01:00
parent b608fb6848
commit a0d33a23f3
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ export function useWalletConfigurator (wallet) {
const { me } = useMe()
const { reloadLocalWallets } = useWallets()
const { encrypt, isActive } = useVault()
const { logger } = useWalletLogger(wallet?.def)
const logger = useWalletLogger(wallet?.def)
const [upsertWallet] = useMutation(generateMutation(wallet?.def))
const [removeWallet] = useMutation(REMOVE_WALLET)