From 59d235e8d29159bc8caccf8bee6a2bca8b0b90dc Mon Sep 17 00:00:00 2001 From: Sebastian Date: Fri, 16 Sep 2022 16:03:58 -0300 Subject: redirect after success #7357 --- packages/taler-wallet-webextension/src/cta/Refund/index.ts | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) (limited to 'packages/taler-wallet-webextension/src/cta/Refund/index.ts') diff --git a/packages/taler-wallet-webextension/src/cta/Refund/index.ts b/packages/taler-wallet-webextension/src/cta/Refund/index.ts index f513ee3b7..be9e3499b 100644 --- a/packages/taler-wallet-webextension/src/cta/Refund/index.ts +++ b/packages/taler-wallet-webextension/src/cta/Refund/index.ts @@ -22,7 +22,6 @@ import { compose, StateViewMap } from "../../utils/index.js"; import * as wxApi from "../../wxApi.js"; import { useComponentState } from "./state.js"; import { - CompletedView, IgnoredView, InProgressView, LoadingUriView, @@ -32,6 +31,7 @@ import { export interface Props { talerRefundUri?: string; cancel: () => Promise; + onSuccess: (tx: string) => Promise; } export type State = @@ -39,8 +39,7 @@ export type State = | State.LoadingUriError | State.Ready | State.Ignored - | State.InProgress - | State.Completed; + | State.InProgress; export namespace State { export interface Loading { @@ -79,17 +78,12 @@ export namespace State { status: "in-progress"; error: undefined; } - export interface Completed extends BaseInfo { - status: "completed"; - error: undefined; - } } const viewMapping: StateViewMap = { loading: Loading, "loading-uri": LoadingUriView, "in-progress": InProgressView, - completed: CompletedView, ignored: IgnoredView, ready: ReadyView, }; -- cgit v1.2.3