Skip to content
Snippets Groups Projects

fix: newsletter footer form

Open Moritz Stückler requested to merge fix/newsletter-footer-form into main
Files
11
@@ -4,7 +4,6 @@ import type { IMenuItem, IToolbarItem } from "@interfaces/IMenu";
import { getCollection } from "astro:content";
export interface Props {
compact?: boolean;
light?: boolean;
reactClasses?: string;
disableAnimation?: boolean;
@@ -17,7 +16,6 @@ export interface Props {
}
const {
compact = false,
reactClasses,
light,
disableAnimation,
@@ -33,7 +31,6 @@ const toolbar = (await getCollection("toolbar")).map((item) => item.data);
<HeaderWrapper
logoLinkTarget={baseUrl}
compact={compact}
menuItems={menuItems}
path={Astro.url.pathname}
light={light}
Loading