summaryrefslogtreecommitdiff
path: root/packages/demobank-ui
diff options
context:
space:
mode:
authorFlorian Dold <florian@dold.me>2022-10-31 16:06:22 +0100
committerFlorian Dold <florian@dold.me>2022-10-31 16:06:22 +0100
commitd3855a1861799e5ca6972ea1b7fa1475835460ba (patch)
tree51b126cea8c11fd77e8a3d5bf65e0f523f191b02 /packages/demobank-ui
parent6e7928062f5bb93769d2960c77af95d5959a64a4 (diff)
downloadwallet-core-d3855a1861799e5ca6972ea1b7fa1475835460ba.tar.gz
wallet-core-d3855a1861799e5ca6972ea1b7fa1475835460ba.tar.bz2
wallet-core-d3855a1861799e5ca6972ea1b7fa1475835460ba.zip
demobank-ui: fix error reporting
Diffstat (limited to 'packages/demobank-ui')
-rw-r--r--packages/demobank-ui/src/pages/home/index.tsx17
1 files changed, 9 insertions, 8 deletions
diff --git a/packages/demobank-ui/src/pages/home/index.tsx b/packages/demobank-ui/src/pages/home/index.tsx
index 0eb7e389d..2da48f3ab 100644
--- a/packages/demobank-ui/src/pages/home/index.tsx
+++ b/packages/demobank-ui/src/pages/home/index.tsx
@@ -31,7 +31,7 @@ import { QR } from "../../components/QR.js";
import { useLocalStorage, useNotNullLocalStorage } from "../../hooks/index.js";
import { Translate, useTranslator } from "../../i18n/index.js";
import "../../scss/main.scss";
-import { Amounts, parsePaytoUri } from "@gnu-taler/taler-util";
+import { Amounts, HttpStatusCode, parsePaytoUri } from "@gnu-taler/taler-util";
interface BankUiSettings {
allowRegistrations: boolean;
@@ -2119,7 +2119,7 @@ function Account(Props: any): VNode {
// revalidateOnFocus: false,
// revalidateOnReconnect: false,
});
- const [pageState, pageStateSetter] = useContext(PageContext);
+ const [pageState, setPageState] = useContext(PageContext);
const { withdrawalInProgress, withdrawalId, isLoggedIn, talerWithdrawUri } =
pageState;
const i18n = useTranslator();
@@ -2141,7 +2141,7 @@ function Account(Props: any): VNode {
*/
switch (error.status) {
case 404: {
- pageStateSetter((prevState: PageStateType) => ({
+ setPageState((prevState: PageStateType) => ({
...prevState,
hasError: true,
isLoggedIn: false,
@@ -2166,8 +2166,9 @@ function Account(Props: any): VNode {
(cache as any).clear();
return <p>Profile not found...</p>;
}
- case 401: {
- pageStateSetter((prevState: PageStateType) => ({
+ case HttpStatusCode.Unauthorized:
+ case HttpStatusCode.Forbidden: {
+ setPageState((prevState: PageStateType) => ({
...prevState,
hasError: true,
isLoggedIn: false,
@@ -2178,10 +2179,10 @@ function Account(Props: any): VNode {
return <p>Wrong credentials...</p>;
}
default: {
- pageStateSetter((prevState: PageStateType) => ({
+ setPageState((prevState: PageStateType) => ({
...prevState,
hasError: true,
- // isLoggedIn: false,
+ isLoggedIn: false,
error: {
title: i18n`Account information could not be retrieved.`,
debug: JSON.stringify(error),
@@ -2249,7 +2250,7 @@ function Account(Props: any): VNode {
{Props.children}
<PaymentOptions
backendState={backendState}
- pageStateSetter={pageStateSetter}
+ pageStateSetter={setPageState}
/>
</CurrencyContext.Provider>
</div>