aboutsummaryrefslogtreecommitdiff
path: root/packages/merchant-backoffice-ui/src/stories.tsx
diff options
context:
space:
mode:
authorSebastian <sebasjm@gmail.com>2022-12-20 15:42:53 -0300
committerSebastian <sebasjm@gmail.com>2022-12-20 15:42:53 -0300
commit382e66b179d6fda2598936196b2ae1b97bfab8ef (patch)
tree84b6be6a6f83626ece36160e102c22c94ab7132b /packages/merchant-backoffice-ui/src/stories.tsx
parent1500c91f36da96226af1226c10bdd83c55c92c23 (diff)
downloadwallet-core-382e66b179d6fda2598936196b2ae1b97bfab8ef.tar.xz
fix testing not compiling
Diffstat (limited to 'packages/merchant-backoffice-ui/src/stories.tsx')
-rw-r--r--packages/merchant-backoffice-ui/src/stories.tsx21
1 files changed, 11 insertions, 10 deletions
diff --git a/packages/merchant-backoffice-ui/src/stories.tsx b/packages/merchant-backoffice-ui/src/stories.tsx
index b7136d185..ccfde4ef2 100644
--- a/packages/merchant-backoffice-ui/src/stories.tsx
+++ b/packages/merchant-backoffice-ui/src/stories.tsx
@@ -1,17 +1,17 @@
/*
- This file is part of GNU Anastasis
- (C) 2021-2022 Anastasis SARL
+ This file is part of GNU Taler
+ (C) 2021-2023 Taler Systems S.A.
- GNU Anastasis is free software; you can redistribute it and/or modify it under the
- terms of the GNU Affero General Public License as published by the Free Software
+ GNU Taler is free software; you can redistribute it and/or modify it under the
+ terms of the GNU General Public License as published by the Free Software
Foundation; either version 3, or (at your option) any later version.
- GNU Anastasis is distributed in the hope that it will be useful, but WITHOUT ANY
+ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
- A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.
+ A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- You should have received a copy of the GNU Affero General Public License along with
- GNU Anastasis; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
+ You should have received a copy of the GNU General Public License along with
+ GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/>
*/
/**
@@ -20,7 +20,8 @@
*/
import { strings } from "./i18n/strings.js";
-import * as pages from "./paths/index.stories.js";
+import * as admin from "./paths/admin/index.stories.js";
+import * as instance from "./paths/instance/index.stories.js";
import { renderStories } from "@gnu-taler/web-util/lib/index.browser";
@@ -32,7 +33,7 @@ function SortStories(a: any, b: any): number {
function main(): void {
renderStories(
- { pages },
+ { admin, instance },
{
strings,
},