Skip to content

Commit

Permalink
Fixing divisions page
Browse files Browse the repository at this point in the history
  • Loading branch information
7emansell committed Dec 20, 2024
1 parent 7afa179 commit 98ee0b6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions app/src/components/pages/divisionsPage/divisionsPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,14 +19,14 @@ interface DivisionsProps {

export default function DivisionsPage({ summary, divisions }: DivisionsProps) {
const [isLoaded, setIsLoaded] = useState(false);
if ((window as any).newrelic) {
(window as any).newrelic.log("test log from divisions page", {
level: "warn",
});
}

useEffect(() => {
setIsLoaded(true);
if ((window as any).newrelic) {
(window as any).newrelic.log("test log from divisions page", {
level: "warn",
});
}
}, []);
return (
<PageLayout
Expand Down

0 comments on commit 98ee0b6

Please sign in to comment.