Skip to content

Commit 2fb844a

Browse files
committed
Fix for PS-446
1 parent 54792d7 commit 2fb844a

File tree

1 file changed

+1
-1
lines changed
  • src/apps/wallet-admin/src/lib/services

1 file changed

+1
-1
lines changed

src/apps/wallet-admin/src/lib/services/wallet.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ export async function exportSearchResults(filters: Record<string, string[]>): Pr
9191
}
9292

9393
if (filters.winnerIds && filters.winnerIds.length > 0) {
94-
payload.winnerIds = filters.winnerIds
94+
payload.winnerIds = filters.winnerIds.map(id => id.toString())
9595
}
9696

9797
const body = JSON.stringify(payload)

0 commit comments

Comments
 (0)