From 35c83414f9e0af11012c1a2e00672d2a7c1856ae Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Fri, 15 May 2020 12:53:35 +0530 Subject: fix issues in the webextension refund UI --- src/webex/pages/refund.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/webex/pages/refund.tsx') diff --git a/src/webex/pages/refund.tsx b/src/webex/pages/refund.tsx index 621a286bb..c5d6a00df 100644 --- a/src/webex/pages/refund.tsx +++ b/src/webex/pages/refund.tsx @@ -36,9 +36,9 @@ function RefundStatusView(props: { talerRefundUri: string }): JSX.Element { useEffect(() => { const doFetch = async (): Promise => { try { - const hc = await wxApi.applyRefund(props.talerRefundUri); + const result = await wxApi.applyRefund(props.talerRefundUri); setApplied(true); - const r = await wxApi.getPurchaseDetails(hc); + const r = await wxApi.getPurchaseDetails(result.proposalId); setPurchaseDetails(r); } catch (e) { console.error(e); -- cgit v1.2.3