We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1d3bbbc commit 48445e6Copy full SHA for 48445e6
packages/explorer/src/app/(explorer)/[chainName]/worlds/[worldAddress]/decode/DecodeForm.tsx
@@ -35,7 +35,7 @@ function isFunction(item: AbiItem): item is AbiFunction {
35
return item.type === "function";
36
}
37
38
-function isError(item: AbiItem): item is AbiError {
+function isError(item: AbiItem): item is AbiItem & { type: "error" } {
39
return item.type === "error";
40
41
0 commit comments