don't always re-run effect
This commit is contained in:
parent
c35b3be795
commit
68aa1e9ece
@ -53,7 +53,7 @@ function TalerPayDialog({ talerPayUri }: { talerPayUri: string }) {
|
|||||||
setPayStatus(p);
|
setPayStatus(p);
|
||||||
};
|
};
|
||||||
doFetch();
|
doFetch();
|
||||||
});
|
}, [numTries]);
|
||||||
|
|
||||||
if (!payStatus) {
|
if (!payStatus) {
|
||||||
return <span>Loading payment information ...</span>;
|
return <span>Loading payment information ...</span>;
|
||||||
|
@ -49,7 +49,7 @@ function RefundStatusView(props: { talerRefundUri: string }) {
|
|||||||
}
|
}
|
||||||
};
|
};
|
||||||
doFetch();
|
doFetch();
|
||||||
});
|
}, []);
|
||||||
|
|
||||||
console.log("rendering");
|
console.log("rendering");
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user