From c0e1abffb9d6e56c5c23cdaab3f2e2489c02c513 Mon Sep 17 00:00:00 2001 From: GregTCLTK Date: Tue, 5 Dec 2023 21:28:45 +0100 Subject: [PATCH] fix: goofy ahh import --- pages/holding/distributionAgreement.ts | 2 +- pages/holding/imprint.ts | 2 +- pages/holding/index.ts | 2 +- pages/shared/mod.ts | 1 - pages/user/oauth.ts | 3 ++- pages/user/signin.ts | 4 +++- 6 files changed, 8 insertions(+), 6 deletions(-) diff --git a/pages/holding/distributionAgreement.ts b/pages/holding/distributionAgreement.ts index 621f0250..05b57558 100644 --- a/pages/holding/distributionAgreement.ts +++ b/pages/holding/distributionAgreement.ts @@ -1,4 +1,4 @@ -import { Footer } from "shared/mod.ts"; +import { Footer } from "shared/footer.ts"; import { Box, Label, View, WebGen } from "webgen/mod.ts"; import { DynaNavigation } from "../../components/nav.ts"; import { RegisterAuthRefresh } from "../_legacy/helper.ts"; diff --git a/pages/holding/imprint.ts b/pages/holding/imprint.ts index b79a4c24..39f15154 100644 --- a/pages/holding/imprint.ts +++ b/pages/holding/imprint.ts @@ -1,4 +1,4 @@ -import { Footer } from "shared/mod.ts"; +import { Footer } from "shared/footer.ts"; import { Box, Button, ButtonStyle, Horizontal, Label, Spacer, View, WebGen } from "webgen/mod.ts"; import { DynaNavigation } from "../../components/nav.ts"; import { RegisterAuthRefresh } from "../_legacy/helper.ts"; diff --git a/pages/holding/index.ts b/pages/holding/index.ts index e221a3d5..68714312 100644 --- a/pages/holding/index.ts +++ b/pages/holding/index.ts @@ -12,7 +12,7 @@ import bbnMusic from "./resources/bbnMusic.svg"; // External import { Counter } from "shared/counter.ts"; -import { Footer } from "shared/mod.ts"; +import { Footer } from "shared/footer.ts"; // @deno-types="https://raw.githubusercontent.com/lucsoft-DevTeam/lucsoft.de/master/custom.d.ts" import bbnCard from "./resources/bbnCard.svg"; // @deno-types="https://raw.githubusercontent.com/lucsoft-DevTeam/lucsoft.de/master/custom.d.ts" diff --git a/pages/shared/mod.ts b/pages/shared/mod.ts index fa59fe99..2e0a4a8a 100644 --- a/pages/shared/mod.ts +++ b/pages/shared/mod.ts @@ -1,7 +1,6 @@ export * from "./Progress.ts"; export * from "./cache.ts"; export * from "./components.ts"; -export * from "./footer.ts"; export * from "./list.ts"; export * from "./listCount.ts"; export * from "./navigation.ts"; diff --git a/pages/user/oauth.ts b/pages/user/oauth.ts index ed13f421..53cbd4df 100644 --- a/pages/user/oauth.ts +++ b/pages/user/oauth.ts @@ -1,4 +1,5 @@ -import { API, Footer, LoadingSpinner, stupidErrorAlert } from "shared/mod.ts"; +import { Footer } from "shared/footer.ts"; +import { API, LoadingSpinner, stupidErrorAlert } from "shared/mod.ts"; import { Box, Button, ButtonStyle, Color, Grid, Horizontal, Image, Label, MIcon, Spacer, State, Vertical, View, WebGen, isMobile } from "webgen/mod.ts"; import '../../assets/css/main.css'; import { dots, templateArtwork } from "../../assets/imports.ts"; diff --git a/pages/user/signin.ts b/pages/user/signin.ts index 80072fe9..a756628c 100644 --- a/pages/user/signin.ts +++ b/pages/user/signin.ts @@ -1,4 +1,6 @@ -import { API, Footer, LoadingSpinner } from "shared/mod.ts"; +import { API, LoadingSpinner } from "shared/mod.ts"; + +import { Footer } from "shared/footer.ts"; import { assert } from "std/assert/assert.ts"; import { Box, Button, ButtonStyle, Color, Form, Grid, Horizontal, Image, Label, Spacer, TextInput, Vertical, View, WebGen, isMobile } from "webgen/mod.ts"; import '../../assets/css/main.css';