From eb8d767eb74ba6808c60321d5f0d5f5773f7704b Mon Sep 17 00:00:00 2001 From: carlgu Date: Wed, 20 Mar 2024 12:28:50 +0100 Subject: [PATCH 1/2] Remove debug output --- src/next/components/Structure/AnchorIntegration.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/next/components/Structure/AnchorIntegration.tsx b/src/next/components/Structure/AnchorIntegration.tsx index b0bc54a..035cdf4 100644 --- a/src/next/components/Structure/AnchorIntegration.tsx +++ b/src/next/components/Structure/AnchorIntegration.tsx @@ -1,6 +1,6 @@ "use client"; -import React, {ReactElement, useEffect} from "react"; +import {ReactElement, useEffect} from "react"; import {usePathname} from "next/navigation"; export type AnchorIntegrationProps = Readonly<{ @@ -57,5 +57,5 @@ export function AnchorIntegration (props: AnchorIntegrationProps): ReactElement ); }, [pathname, props.timeout]); - return
a
; + return null; } From a9c78c428011d154d1db67370da5878d318d0cad Mon Sep 17 00:00:00 2001 From: carlgu Date: Wed, 20 Mar 2024 12:35:07 +0100 Subject: [PATCH 2/2] Update Changelog --- CHANGELOG.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 853a187..b5658c0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +2.1.1 +===== + +* (bug) Remove debug output div + + 2.1.0 =====