Skip to content

Commit

Permalink
fix(dashboard): default wallet Id (#4020)
Browse files Browse the repository at this point in the history
  • Loading branch information
siddhart1o1 authored Feb 18, 2024
1 parent a6193f0 commit 0ff4625
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/dashboard/app/api-keys/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default async function Home() {
const activeKeys = keys.filter(({ expired, revoked }) => !expired && !revoked)
const expiredKeys = keys.filter(({ expired }) => expired)
const revokedKeys = keys.filter(({ revoked }) => revoked)
const defaultWalletId = session.userData.data.me?.defaultAccount.id
const defaultWalletId = session.userData.data.me?.defaultAccount.defaultWalletId

return (
<ContentContainer>
Expand Down

0 comments on commit 0ff4625

Please sign in to comment.