From 32d820329ad663425ac41d5388cadb95dca11690 Mon Sep 17 00:00:00 2001 From: Devin Matte Date: Sun, 10 Dec 2023 17:06:32 -0800 Subject: [PATCH] Updating prep components --- common/components/nav/CommuterRailDropdown.tsx | 2 +- common/components/nav/CommuterRailSection.tsx | 5 ++--- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/common/components/nav/CommuterRailDropdown.tsx b/common/components/nav/CommuterRailDropdown.tsx index bc3f68e57..522d0c1bf 100644 --- a/common/components/nav/CommuterRailDropdown.tsx +++ b/common/components/nav/CommuterRailDropdown.tsx @@ -13,7 +13,7 @@ export const CommuterRailDropdown: React.FC = ({ clos
diff --git a/common/components/nav/CommuterRailSection.tsx b/common/components/nav/CommuterRailSection.tsx index cf3c98708..ae39ed91f 100644 --- a/common/components/nav/CommuterRailSection.tsx +++ b/common/components/nav/CommuterRailSection.tsx @@ -1,19 +1,18 @@ import React from 'react'; import { useDelimitatedRoute } from '../../utils/router'; -import { BusDropdown } from './BusDropdown'; import { MenuDropdown } from './MenuDropdown'; +import { CommuterRailDropdown } from './CommuterRailDropdown'; interface CommuterRailSectionProps { close?: () => void; } -// TODO: Add commuter rail dropdown to sidebar export const CommuterRailSection: React.FC = ({ close }) => { const route = useDelimitatedRoute(); return (
- +
);