Skip to content

Commit

Permalink
fix: batch call test (#2447)
Browse files Browse the repository at this point in the history
  • Loading branch information
rossbulat authored Jan 17, 2025
1 parent 52392af commit 6f4f9ae
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app/src/hooks/useProxySupported/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const useProxySupported = () => {
const call = `${pallet}.${method}`

// If a batch call, test if every inner call is a supported proxy call.
if (call === 'utility.batch') {
if (call === 'Utility.batch') {
return (tx?.decodedCall?.value?.value?.calls || [])
.map((c: AnyJson) => ({
pallet: c.type,
Expand Down

0 comments on commit 6f4f9ae

Please sign in to comment.