Skip to content

Commit

Permalink
Merge pull request #32 from 21TORR/cleanup-debug
Browse files Browse the repository at this point in the history
Remove debug output
  • Loading branch information
apfelbox authored Mar 20, 2024
2 parents 4caff68 + a9c78c4 commit a61c5fe
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
2.1.1
=====

* (bug) Remove debug output div


2.1.0
=====

Expand Down
4 changes: 2 additions & 2 deletions src/next/components/Structure/AnchorIntegration.tsx
Original file line number Diff line number Diff line change
@@ -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<{
Expand Down Expand Up @@ -57,5 +57,5 @@ export function AnchorIntegration (props: AnchorIntegrationProps): ReactElement
);
}, [pathname, props.timeout]);

return <div>a</div>;
return null;
}

0 comments on commit a61c5fe

Please sign in to comment.