Skip to content
This repository has been archived by the owner on Dec 17, 2024. It is now read-only.

Commit

Permalink
fix: goofy ahh import
Browse files Browse the repository at this point in the history
  • Loading branch information
greg6775 committed Dec 5, 2023
1 parent 1090712 commit c0e1abf
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion pages/holding/distributionAgreement.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
2 changes: 1 addition & 1 deletion pages/holding/imprint.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
2 changes: 1 addition & 1 deletion pages/holding/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
1 change: 0 additions & 1 deletion pages/shared/mod.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
3 changes: 2 additions & 1 deletion pages/user/oauth.ts
Original file line number Diff line number Diff line change
@@ -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";
Expand Down
4 changes: 3 additions & 1 deletion pages/user/signin.ts
Original file line number Diff line number Diff line change
@@ -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';
Expand Down

3 comments on commit c0e1abf

@lucsoft
Copy link
Member

@lucsoft lucsoft commented on c0e1abf Dec 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

also ein richtiger fix ist das jetzt nicht nehh?

@greg6775
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

at least worked es wieder und ist ready to merge

@greg6775
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

kannst ja nicht eif die footer css importen ohne zu testen

Please sign in to comment.