Skip to content

Commit

Permalink
feat: locked balance (#66)
Browse files Browse the repository at this point in the history
  • Loading branch information
anukulpandey authored Sep 16, 2024
1 parent 3aa7474 commit d4d522a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/AccountSelector/AccountSelector.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -82,13 +82,15 @@ export const AccountSelector = ({

useEffect(() => {
const allAccounts: Account[] = accounts.map((acc) => {
const { name, address, evmAddress, source, isEvmClaimed } = acc;
const { name, address, evmAddress, source, isEvmClaimed,lockedBalance,freeBalance } = (acc as any);
return {
name,
address,
evmAddress,
source,
isEvmClaimed,
lockedBalance,
freeBalance
} as Account;
});
setAllAccounts(allAccounts);
Expand Down

0 comments on commit d4d522a

Please sign in to comment.