diff --git a/src/app/(dashboard)/_components/dashboard.tsx b/src/app/(dashboard)/_components/dashboard.tsx index d561868..8c3af4e 100644 --- a/src/app/(dashboard)/_components/dashboard.tsx +++ b/src/app/(dashboard)/_components/dashboard.tsx @@ -400,7 +400,8 @@ export default function Dashboard({ registryAssets }: DashboardProps) { amount === '' || amount === '0' || recipientAddress === '' || - isInsufficientBalance + isInsufficientBalance || + isInvalid } > Confirm Transaction diff --git a/src/utils/fetch-register.ts b/src/utils/fetch-register.ts index 63166d1..2a97126 100644 --- a/src/utils/fetch-register.ts +++ b/src/utils/fetch-register.ts @@ -8,7 +8,7 @@ export async function fetchRegistry() { return response.fetchJson({ owner: 'ringecosystem', repo: 'paralink', - branch: 'feature', + branch: 'main', path: 'xcm-chain-registry-builder/dist/transformed-chain-registry.json' }) }