Skip to content

Commit

Permalink
Remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
carlgu committed Mar 20, 2024
1 parent 4caff68 commit eb8d767
Showing 1 changed file with 2 additions and 2 deletions.
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 eb8d767

Please sign in to comment.