debug
This commit is contained in:
parent
56187f7a84
commit
f6bf635b0d
@ -18,6 +18,7 @@ import { useDisplayedWallets } from '@/hooks/useDisplayedWallets';
|
||||
|
||||
import { breakpoints } from '@/styles';
|
||||
import { layoutMixins } from '@/styles/layoutMixins';
|
||||
import { usePrivy } from '@privy-io/react-auth';
|
||||
|
||||
export const ChooseWallet = () => {
|
||||
const stringGetter = useStringGetter();
|
||||
@ -26,6 +27,8 @@ export const ChooseWallet = () => {
|
||||
const displayedWallets = useDisplayedWallets();
|
||||
|
||||
const { selectWalletType, selectedWalletType, selectedWalletError } = useAccounts();
|
||||
|
||||
const { ready, authenticated } = usePrivy();
|
||||
|
||||
return (
|
||||
<>
|
||||
@ -63,6 +66,14 @@ export const ChooseWallet = () => {
|
||||
</div>
|
||||
</Styled.WalletButton>
|
||||
))}
|
||||
<Styled.WalletButton
|
||||
action={ButtonAction.Base}
|
||||
key={'debug'}
|
||||
onClick={() => console.log({ authenticated, ready })}
|
||||
size={ButtonSize.Small}
|
||||
>
|
||||
Debug
|
||||
</Styled.WalletButton>
|
||||
</Styled.Wallets>
|
||||
|
||||
<Styled.Footer>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user