Skip to content

Commit f295d21

Browse files
committed
fix(dashboard): filter smartWallet
1 parent 3e3197d commit f295d21

File tree

1 file changed

+1
-1
lines changed
  • apps/dashboard/src/app/team/[team_slug]/[project_slug]

1 file changed

+1
-1
lines changed

apps/dashboard/src/app/team/[team_slug]/[project_slug]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ function UsersChartCard({
240240
async function WalletDistributionCard({ data }: { data: WalletStats[] }) {
241241
const formattedData = await Promise.all(
242242
data
243-
.filter((w) => w.walletType !== "smart")
243+
.filter((w) => w.walletType !== "smart" && w.walletType !== "smartWallet")
244244
.map(async (w) => {
245245
const wallet = await getWalletInfo(w.walletType as WalletId).catch(
246246
() => ({ name: w.walletType }),

0 commit comments

Comments
 (0)