aboutsummaryrefslogtreecommitdiff
path: root/packages/demobank-ui/src/components/Cashouts/state.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/demobank-ui/src/components/Cashouts/state.ts')
-rw-r--r--packages/demobank-ui/src/components/Cashouts/state.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/packages/demobank-ui/src/components/Cashouts/state.ts b/packages/demobank-ui/src/components/Cashouts/state.ts
index 178a1e815..124f9bf9c 100644
--- a/packages/demobank-ui/src/components/Cashouts/state.ts
+++ b/packages/demobank-ui/src/components/Cashouts/state.ts
@@ -14,12 +14,11 @@
GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
-import { AbsoluteTime, Amounts } from "@gnu-taler/taler-util";
import { useCashouts } from "../../hooks/circuit.js";
-import { Props, State, Transaction } from "./index.js";
+import { Props, State } from "./index.js";
-export function useComponentState({ empty }: Props): State {
- const result = useCashouts();
+export function useComponentState({ account, onSelected }: Props): State {
+ const result = useCashouts(account);
if (result.loading) {
return {
status: "loading",
@@ -37,5 +36,6 @@ export function useComponentState({ empty }: Props): State {
status: "ready",
error: undefined,
cashouts: result.data,
+ onSelected,
};
}