gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[taler-wallet-core] branch master updated (681605261 -> 3348db0d5)


From: gnunet
Subject: [taler-wallet-core] branch master updated (681605261 -> 3348db0d5)
Date: Mon, 23 Jan 2023 18:57:34 +0100

This is an automated email from the git hooks/post-receive script.

sebasjm pushed a change to branch master
in repository wallet-core.

    from 681605261 update READMEs
     new 87c10f6c8 depleted rollback
     new 3348db0d5 fix wrong property

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 packages/merchant-backend-ui/README.md                         | 10 +++++-----
 packages/merchant-backend-ui/rollup.config.js                  |  2 +-
 .../pages/{DeletedTip.stories.tsx => DepletedTip.stories.tsx}  |  4 ++--
 .../src/pages/{DeletedTip.tsx => DepletedTip.tsx}              |  6 +++---
 .../src/paths/instance/reserves/create/CreatePage.tsx          |  2 +-
 5 files changed, 12 insertions(+), 12 deletions(-)
 rename packages/merchant-backend-ui/src/pages/{DeletedTip.stories.tsx => 
DepletedTip.stories.tsx} (92%)
 rename packages/merchant-backend-ui/src/pages/{DeletedTip.tsx => 
DepletedTip.tsx} (92%)

diff --git a/packages/merchant-backend-ui/README.md 
b/packages/merchant-backend-ui/README.md
index 34cf3210a..bbf826e0e 100644
--- a/packages/merchant-backend-ui/README.md
+++ b/packages/merchant-backend-ui/README.md
@@ -4,11 +4,11 @@ Merchant Backend pages
 
 This project generate 5 templates for the merchant backend:
 
- * DeletedTip
- * OfferRefund
- * OfferTip
- * RequestPayment
- * ShowOrderDetails
+- DepletedTip
+- OfferRefund
+- OfferTip
+- RequestPayment
+- ShowOrderDetails
 
 This pages are to be serve from the merchant-backend service and will be 
queried for browser that may or may not have JavaScript enabled, so we are 
going to do server side rendering.
 The merchant-backend service is currently supporting mustache library for 
server side rendering.
diff --git a/packages/merchant-backend-ui/rollup.config.js 
b/packages/merchant-backend-ui/rollup.config.js
index 5f22cc654..18d72e56b 100644
--- a/packages/merchant-backend-ui/rollup.config.js
+++ b/packages/merchant-backend-ui/rollup.config.js
@@ -110,7 +110,7 @@ const pageDefinition = (name) => ({
 export default [
   pageDefinition("OfferTip"),
   pageDefinition("OfferRefund"),
-  pageDefinition("DeletedTip"),
+  pageDefinition("DepletedTip"),
   pageDefinition("RequestPayment"),
   pageDefinition("ShowOrderDetails"),
 ]
diff --git a/packages/merchant-backend-ui/src/pages/DeletedTip.stories.tsx 
b/packages/merchant-backend-ui/src/pages/DepletedTip.stories.tsx
similarity index 92%
rename from packages/merchant-backend-ui/src/pages/DeletedTip.stories.tsx
rename to packages/merchant-backend-ui/src/pages/DepletedTip.stories.tsx
index a249c4074..41c3e26a5 100644
--- a/packages/merchant-backend-ui/src/pages/DeletedTip.stories.tsx
+++ b/packages/merchant-backend-ui/src/pages/DepletedTip.stories.tsx
@@ -20,10 +20,10 @@
  */
 
 import { h, VNode, FunctionalComponent } from "preact";
-import { DeletedTip as TestedComponent } from "./DeletedTip";
+import { DepletedTip as TestedComponent } from "./DepletedTip";
 
 export default {
-  title: "DeletedTip",
+  title: "DepletedTip",
   component: TestedComponent,
   argTypes: {},
 };
diff --git a/packages/merchant-backend-ui/src/pages/DeletedTip.tsx 
b/packages/merchant-backend-ui/src/pages/DepletedTip.tsx
similarity index 92%
rename from packages/merchant-backend-ui/src/pages/DeletedTip.tsx
rename to packages/merchant-backend-ui/src/pages/DepletedTip.tsx
index 10f3c6a17..61fc52cdf 100644
--- a/packages/merchant-backend-ui/src/pages/DeletedTip.tsx
+++ b/packages/merchant-backend-ui/src/pages/DepletedTip.tsx
@@ -29,7 +29,7 @@ function Head(): VNode {
   return <title>Status of your tip</title>;
 }
 
-export function DeletedTip(): VNode {
+export function DepletedTip(): VNode {
   return (
     <Page>
       <section>
@@ -43,7 +43,7 @@ export function DeletedTip(): VNode {
 
 export function mount(): void {
   try {
-    render(<DeletedTip />, document.body);
+    render(<DepletedTip />, document.body);
   } catch (e) {
     console.error("got error", e);
     if (e instanceof Error) {
@@ -55,6 +55,6 @@ export function mount(): void {
 export function buildTimeRendering(): { head: string; body: string } {
   return {
     head: renderToString(<Head />),
-    body: renderToString(<DeletedTip />),
+    body: renderToString(<DepletedTip />),
   };
 }
diff --git 
a/packages/merchant-backoffice-ui/src/paths/instance/reserves/create/CreatePage.tsx
 
b/packages/merchant-backoffice-ui/src/paths/instance/reserves/create/CreatePage.tsx
index ad0cca74a..eeb59611c 100644
--- 
a/packages/merchant-backoffice-ui/src/paths/instance/reserves/create/CreatePage.tsx
+++ 
b/packages/merchant-backoffice-ui/src/paths/instance/reserves/create/CreatePage.tsx
@@ -127,7 +127,7 @@ function ViewStep({
                 return fetch(`${reserve.exchange_url}wire`)
                   .then((r) => r.json())
                   .then((r) => {
-                    const wireMethods = r.data.accounts.map((a: any) => {
+                    const wireMethods = r.accounts.map((a: any) => {
                       const match = PAYTO_WIRE_METHOD_LOOKUP.exec(a.payto_uri);
                       return (match && match[1]) || "";
                     });

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]