From d379ad88f8813b243e31a98ab78473dd1dd6673b Mon Sep 17 00:00:00 2001
From: Etienne Pichot Damon <79003454+etienne0101@users.noreply.github.com>
Date: Wed, 15 Apr 2026 16:38:00 -0400
Subject: [PATCH 1/3] Add GTFS Features Adoption Tracker
---
src/app/router/Router.tsx | 2 ++
.../Analytics/GTFSFeaturesTracker/index.tsx | 24 +++++++++++++++++++
2 files changed, 26 insertions(+)
create mode 100644 src/app/screens/Analytics/GTFSFeaturesTracker/index.tsx
diff --git a/src/app/router/Router.tsx b/src/app/router/Router.tsx
index 85d8ea30..b04b5f41 100644
--- a/src/app/router/Router.tsx
+++ b/src/app/router/Router.tsx
@@ -23,6 +23,7 @@ import FeedSubmitted from '../screens/FeedSubmitted';
import GTFSFeedAnalytics from '../screens/Analytics/GTFSFeedAnalytics';
import GTFSNoticeAnalytics from '../screens/Analytics/GTFSNoticeAnalytics';
import GTFSFeatureAnalytics from '../screens/Analytics/GTFSFeatureAnalytics';
+import GTFSFeaturesTracker from '../screens/Analytics/GTFSFeaturesTracker';
import GBFSFeedAnalytics from '../screens/Analytics/GBFSFeedAnalytics';
import GBFSNoticeAnalytics from '../screens/Analytics/GBFSNoticeAnalytics';
import GBFSVersionAnalytics from '../screens/Analytics/GBFSVersionAnalytics';
@@ -91,6 +92,7 @@ export const AppRouter: React.FC = () => {
} />
} />
} />
+ } />
} />
diff --git a/src/app/screens/Analytics/GTFSFeaturesTracker/index.tsx b/src/app/screens/Analytics/GTFSFeaturesTracker/index.tsx
new file mode 100644
index 00000000..5b3d9a24
--- /dev/null
+++ b/src/app/screens/Analytics/GTFSFeaturesTracker/index.tsx
@@ -0,0 +1,24 @@
+import * as React from 'react';
+import Box from '@mui/material/Box';
+import { Typography } from '@mui/material';
+
+export default function GTFSFeatureAnalytics(): React.ReactElement {
+ return (
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
From e08de0bd8181a0e9bdfb105ce787b4e4bdedce48 Mon Sep 17 00:00:00 2001
From: Etienne Pichot Damon <79003454+etienne0101@users.noreply.github.com>
Date: Thu, 16 Apr 2026 09:34:19 -0400
Subject: [PATCH 2/3] Fix linting errors
---
src/app/screens/Analytics/GTFSFeaturesTracker/index.tsx | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/src/app/screens/Analytics/GTFSFeaturesTracker/index.tsx b/src/app/screens/Analytics/GTFSFeaturesTracker/index.tsx
index 5b3d9a24..3f84e8cf 100644
--- a/src/app/screens/Analytics/GTFSFeaturesTracker/index.tsx
+++ b/src/app/screens/Analytics/GTFSFeaturesTracker/index.tsx
@@ -1,15 +1,13 @@
import * as React from 'react';
import Box from '@mui/material/Box';
-import { Typography } from '@mui/material';
export default function GTFSFeatureAnalytics(): React.ReactElement {
return (
-
);
-}
\ No newline at end of file
+}