feat(account-info): import and use getWallet from account handler

The 'getWallet' function has been imported from the account handler service and is now used in account-info component. This addition ensures to fetch information when the component renders.
This commit is contained in:
Mathis H (Avnyr) 2024-06-18 21:22:34 +02:00
parent 00be94c5a8
commit 50225f1c17
Signed by: Mathis
GPG Key ID: DD9E0666A747D126

View File

@ -14,7 +14,7 @@ import { Label } from "@/components/ui/label";
import type { IUserData } from "@/interfaces/userdata.interface";
import { CopyButton } from "@/components/ui/copy-button";
import { doDisconnect } from "@/services/account.handler";
import { doDisconnect, getWallet } from "@/services/account.handler";
import { Bitcoin, Fingerprint, Key, Landmark, Unplug, User, Wallet } from "lucide-react";
import Link from "next/link";
import type React from "react";
@ -28,6 +28,9 @@ export function AccountInfo({
setUserData: React.Dispatch<React.SetStateAction<IUserData | undefined>>;
isDisconnected: boolean;
}) {
getWallet().then(() => {
console.log("pong !");
});
if (isDisconnected) {
return (
<div className={"flex flex-col justify-center items-center h-10 p-2 text-xs mt-2"}>