chore: update dependencies (#175)

This commit is contained in:
Victor Oliva
2026-07-20 17:13:57 +02:00
committed by GitHub
parent 90d73af567
commit ed2e59c938
3 changed files with 1303 additions and 881 deletions

View File

@@ -17,43 +17,43 @@
"@acala-network/chopsticks-core": "^1.5.0",
"@ledgerhq/hw-transport-webusb": "^6.35.0",
"@monaco-editor/react": "^4.7.0",
"@paraspell/sdk": "^13.11.0",
"@paraspell/sdk": "^14.0.0",
"@polkadot-api/descriptors": "file:.papi/descriptors",
"@polkadot-api/forklift": "^0.4.1",
"@polkadot-api/json-rpc-provider-proxy": "^0.4.0",
"@polkadot-api/json-rpc-provider-proxy": "^0.4.1",
"@polkadot-api/metadata-builders": "^0.14.3",
"@polkadot-api/observable-client": "^0.18.7",
"@polkadot-api/react-builder": "0.5.3",
"@polkadot-api/react-components": "^0.4.2",
"@polkadot-api/substrate-bindings": "^0.20.3",
"@polkadot-api/tx-utils": "^0.3.4",
"@polkadot-api/tx-utils": "^0.5.0",
"@polkahub/ui-components": "^0.7.1",
"@radix-ui/react-accordion": "^1.2.16",
"@radix-ui/react-dialog": "^1.1.19",
"@radix-ui/react-label": "^2.1.11",
"@radix-ui/react-popover": "^1.1.19",
"@radix-ui/react-radio-group": "^1.4.3",
"@radix-ui/react-scroll-area": "^1.2.14",
"@radix-ui/react-select": "^2.3.3",
"@radix-ui/react-accordion": "^1.2.17",
"@radix-ui/react-dialog": "^1.1.20",
"@radix-ui/react-label": "^2.1.12",
"@radix-ui/react-popover": "^1.1.20",
"@radix-ui/react-radio-group": "^1.4.4",
"@radix-ui/react-scroll-area": "^1.2.15",
"@radix-ui/react-select": "^2.3.4",
"@radix-ui/react-slot": "^1.3.0",
"@radix-ui/react-tabs": "^1.1.17",
"@radix-ui/react-toggle": "^1.1.14",
"@radix-ui/react-toggle-group": "^1.1.15",
"@radix-ui/react-tooltip": "^1.2.12",
"@radix-ui/react-tabs": "^1.1.18",
"@radix-ui/react-toggle": "^1.1.15",
"@radix-ui/react-toggle-group": "^1.1.16",
"@radix-ui/react-tooltip": "^1.2.13",
"@react-rxjs/core": "^0.10.8",
"@react-rxjs/utils": "^0.9.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"idb-keyval": "^6.3.0",
"lucide-react": "^1.23.0",
"polkadot-api": "^2.1.8",
"lucide-react": "^1.25.0",
"polkadot-api": "^2.2.0",
"polkahub": "^0.7.1",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"react-portal": "^4.3.0",
"react-router-dom": "^7.18.1",
"react-svg": "^17.2.4",
"react-virtuoso": "^4.18.10",
"react-virtuoso": "^4.18.11",
"react18-json-view": "^0.2.10",
"rxjs": "^7.8.2",
"save-as": "^0.1.8",
@@ -64,21 +64,21 @@
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@tailwindcss/vite": "^4.3.2",
"@tailwindcss/vite": "^4.3.3",
"@types/node": "^25.9.5",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@types/react-portal": "^4.0.7",
"@vitejs/plugin-react": "^6.0.3",
"eslint": "^10.6.0",
"eslint": "^10.7.0",
"eslint-plugin-react-hooks": "7.1.1",
"eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0",
"prettier": "^3.9.4",
"tailwindcss": "^4.3.2",
"typescript": "^6.0.3",
"typescript-eslint": "^8.63.0",
"vite": "^8.1.3"
"prettier": "^3.9.5",
"tailwindcss": "^4.3.3",
"typescript": "^7.0.2",
"typescript-eslint": "^8.64.0",
"vite": "^8.1.5"
},
"packageManager": "pnpm@10.30.3+sha512.c961d1e0a2d8e354ecaa5166b822516668b7f44cb5bd95122d590dd81922f606f5473b6d23ec4a5be05e7fcd18e8488d47d978bbe981872f1145d06e9a740017",
"pnpm": {

2130
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@@ -175,9 +175,11 @@ const DryRunChainResult: FC<{ result: TDryRunChainResult }> = ({ result }) => {
<div className="space-y-2 text-sm">
<StatusBadge value={false} />
<div className="text-red-700 dark:text-red-300">
{result.failureReason}
{result.dryRunError.reason}
</div>
{result.failureSubReason ? <div>{result.failureSubReason}</div> : null}
{result.dryRunError.subReason ? (
<div>{result.dryRunError.subReason}</div>
) : null}
</div>
)
}