stacker.news/components/wallet-indicator.js
ekzyis d7a7273ca4
Wallet indicators (#2002)
* Add wallet indicator

* Reveal wallets page via button
2025-04-02 15:02:13 -05:00

7 lines
163 B
JavaScript

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