aboutsummaryrefslogtreecommitdiff
path: root/packages/exchange-backoffice-ui/src/pages
diff options
context:
space:
mode:
Diffstat (limited to 'packages/exchange-backoffice-ui/src/pages')
-rw-r--r--packages/exchange-backoffice-ui/src/pages/AccountDetails.tsx14
-rw-r--r--packages/exchange-backoffice-ui/src/pages/NewFormEntry.tsx6
-rw-r--r--packages/exchange-backoffice-ui/src/pages/Officer.tsx4
3 files changed, 6 insertions, 18 deletions
diff --git a/packages/exchange-backoffice-ui/src/pages/AccountDetails.tsx b/packages/exchange-backoffice-ui/src/pages/AccountDetails.tsx
index 8b9b01ae6..b252d2ab0 100644
--- a/packages/exchange-backoffice-ui/src/pages/AccountDetails.tsx
+++ b/packages/exchange-backoffice-ui/src/pages/AccountDetails.tsx
@@ -126,24 +126,14 @@ function getEventsFromAmlHistory(
prev.push({
type: "kyc-collection",
title: "collection" as TranslatedString,
- when: {
- t_ms:
- k.collection_time.t_s === "never"
- ? "never"
- : k.collection_time.t_s * 1000,
- },
+ when: AbsoluteTime.fromProtocolTimestamp(k.collection_time),
values: !k.attributes ? {} : k.attributes,
provider: k.provider_section,
});
prev.push({
type: "kyc-expiration",
title: "expired" as TranslatedString,
- when: {
- t_ms:
- k.expiration_time.t_s === "never"
- ? "never"
- : k.expiration_time.t_s * 1000,
- },
+ when: AbsoluteTime.fromProtocolTimestamp(k.expiration_time),
fields: !k.attributes ? [] : Object.keys(k.attributes),
});
return prev;
diff --git a/packages/exchange-backoffice-ui/src/pages/NewFormEntry.tsx b/packages/exchange-backoffice-ui/src/pages/NewFormEntry.tsx
index 9c143addd..fdb255701 100644
--- a/packages/exchange-backoffice-ui/src/pages/NewFormEntry.tsx
+++ b/packages/exchange-backoffice-ui/src/pages/NewFormEntry.tsx
@@ -3,7 +3,7 @@ import { allForms } from "./AntiMoneyLaunderingForm.js";
import { Pages } from "../pages.js";
import { NiceForm } from "../NiceForm.js";
import { AmlState } from "../types.js";
-import { Amounts } from "@gnu-taler/taler-util";
+import { AbsoluteTime, Amounts } from "@gnu-taler/taler-util";
export function NewFormEntry({
account,
@@ -26,9 +26,7 @@ export function NewFormEntry({
const showingFrom = allForms[selectedForm].impl;
const initial = {
fullName: "loggedIn_user_fullname",
- when: {
- t_ms: new Date().getTime(),
- },
+ when: AbsoluteTime.now(),
state: AmlState.pending,
threshold: Amounts.parseOrThrow("USD:10"),
};
diff --git a/packages/exchange-backoffice-ui/src/pages/Officer.tsx b/packages/exchange-backoffice-ui/src/pages/Officer.tsx
index 79dd8bace..39e368b37 100644
--- a/packages/exchange-backoffice-ui/src/pages/Officer.tsx
+++ b/packages/exchange-backoffice-ui/src/pages/Officer.tsx
@@ -1,4 +1,4 @@
-import { TranslatedString } from "@gnu-taler/taler-util";
+import { AbsoluteTime, TranslatedString } from "@gnu-taler/taler-util";
import {
notifyError,
notifyInfo,
@@ -47,7 +47,7 @@ export function Officer() {
<CreateAccount
onNewAccount={(salt, key, pwd) => {
password.update(pwd);
- officer.update({ salt, when: { t_ms: Date.now() }, key });
+ officer.update({ salt, when: AbsoluteTime.now(), key });
}}
/>
);