diff --git a/client/components/ArmSwitcher.tsx b/client/components/ArmSwitcher.tsx index 32d55c49..35b3e531 100644 --- a/client/components/ArmSwitcher.tsx +++ b/client/components/ArmSwitcher.tsx @@ -95,8 +95,8 @@ const LOGO_URLS: Record = { export default function ArmSwitcher() { const navigate = useNavigate(); - const handleArmClick = () => { - navigate("/arms"); + const handleArmClick = (href: string) => { + navigate(href); }; return ( @@ -106,7 +106,7 @@ export default function ArmSwitcher() { {ARMS.map((arm) => (