diff --git a/app/robots/page.tsx b/app/robots/page.tsx index 9bf1209..d21a7c3 100644 --- a/app/robots/page.tsx +++ b/app/robots/page.tsx @@ -42,7 +42,9 @@ export default function RobotsPage() {
(robotRefs.current[robot.id] = el)} + ref={(el) => { + robotRefs.current[robot.id] = el; + }} className={`scroll-mt-24 ${highlightedRobot === robot.id ? "ring-2 ring-primary p-4" : ""}`} >
diff --git a/app/teams/layout.tsx b/app/teams/layout.tsx index 5d34fb8..6fbcc53 100644 --- a/app/teams/layout.tsx +++ b/app/teams/layout.tsx @@ -16,7 +16,9 @@ export default function TeamsLayout({ return ( <>
- {children} +
+ {children} +