Skip to content

Commit 766b54d

Browse files
committed
fix: inspector value update
1 parent 334f225 commit 766b54d

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/containers/Inspector.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,8 @@ const Inspector: React.FC<IProps> = (props) => {
7979
id,
8080
});
8181
}
82-
}, [props.openrpcMethodObject, json, setJson, id]);
82+
// eslint-disable-next-line react-hooks/exhaustive-deps
83+
}, []);
8384

8485
useEffect(() => {
8586
if (props.url) {

0 commit comments

Comments
 (0)