stacker.news/wallets/indicator.js
2025-04-13 00:50:29 +02:00

7 lines
188 B
JavaScript

import { useConfiguredWallets } from '@/wallets'
export function useWalletIndicator () {
const { wallets, loading } = useConfiguredWallets()
return !loading && wallets.length === 0
}