diff options
| author | Sebastian <sebasjm@gmail.com> | 2023-01-09 08:38:48 -0300 | 
|---|---|---|
| committer | Sebastian <sebasjm@gmail.com> | 2023-01-09 08:38:48 -0300 | 
| commit | 9b04d8bf3581d162cbd631892ca115df811c46f8 (patch) | |
| tree | 42b7da7cc3a3f8186823a7571aa221dc8e9aa7a5 /packages/taler-wallet-webextension/src/wallet/Notifications/views.tsx | |
| parent | 14f3d1e06dda003d457f2b3531e197011a284244 (diff) | |
fix #7152
Diffstat (limited to 'packages/taler-wallet-webextension/src/wallet/Notifications/views.tsx')
| -rw-r--r-- | packages/taler-wallet-webextension/src/wallet/Notifications/views.tsx | 12 | 
1 files changed, 0 insertions, 12 deletions
diff --git a/packages/taler-wallet-webextension/src/wallet/Notifications/views.tsx b/packages/taler-wallet-webextension/src/wallet/Notifications/views.tsx index 9146d8837..8d0bb34c0 100644 --- a/packages/taler-wallet-webextension/src/wallet/Notifications/views.tsx +++ b/packages/taler-wallet-webextension/src/wallet/Notifications/views.tsx @@ -20,7 +20,6 @@ import {    AttentionType,  } from "@gnu-taler/taler-util";  import { Fragment, h, VNode } from "preact"; -import { LoadingError } from "../../components/LoadingError.js";  import {    Column,    DateSeparator, @@ -37,17 +36,6 @@ import { Pages } from "../../NavigationBar.js";  import { assertUnreachable } from "../../utils/index.js";  import { State } from "./index.js"; -export function LoadingUriView({ error }: State.LoadingUriError): VNode { -  const { i18n } = useTranslationContext(); - -  return ( -    <LoadingError -      title={<i18n.Translate>Could not load notifications</i18n.Translate>} -      error={error} -    /> -  ); -} -  const term = 1000 * 60 * 60 * 24;  function normalizeToDay(x: number): number {    return Math.round(x / term) * term;  | 
