review test
This commit is contained in:
parent
ad420670a7
commit
e4eb8f4a26
1 changed files with 2 additions and 2 deletions
|
@ -206,10 +206,10 @@ const ClaimPreview = forwardRef<any, {}>((props: Props, ref: any) => {
|
|||
}
|
||||
|
||||
useEffect(() => {
|
||||
if (isValid && shouldFetch && uri) {
|
||||
if (isValid && !isResolvingUri && shouldFetch && uri) {
|
||||
resolveUri(uri);
|
||||
}
|
||||
}, [isValid, uri, resolveUri, shouldFetch]);
|
||||
}, [isValid, uri, isResolvingUri, shouldFetch]);
|
||||
|
||||
if (shouldHide && !showNullPlaceholder) {
|
||||
return null;
|
||||
|
|
Loading…
Add table
Reference in a new issue