mirror of
https://github.com/LBRYFoundation/lbry-desktop.git
synced 2025-09-03 12:30:10 +00:00
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(() => {
|
useEffect(() => {
|
||||||
if (isValid && shouldFetch && uri) {
|
if (isValid && !isResolvingUri && shouldFetch && uri) {
|
||||||
resolveUri(uri);
|
resolveUri(uri);
|
||||||
}
|
}
|
||||||
}, [isValid, uri, resolveUri, shouldFetch]);
|
}, [isValid, uri, isResolvingUri, shouldFetch]);
|
||||||
|
|
||||||
if (shouldHide && !showNullPlaceholder) {
|
if (shouldHide && !showNullPlaceholder) {
|
||||||
return null;
|
return null;
|
||||||
|
|
Loading…
Add table
Reference in a new issue